-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiscoLED.cpp
95 lines (77 loc) · 2.58 KB
/
DiscoLED.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
Copyright (C) 2016 Mathieu Othacehe. All rights reserved.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <AP_HAL/AP_HAL.h>
#if CONFIG_HAL_BOARD == HAL_BOARD_LINUX
#include "DiscoLED.h"
#include <AP_HAL_Linux/Led_Sysfs.h>
#include <AP_HAL_Linux/PWM_Sysfs.h>
#define RED_PWM_INDEX 9
#define GREEN_PWM_INDEX 8
#define BLUE_PWM_INDEX 15
#define DISCO_LED_LOW 0x33
#define DISCO_LED_MEDIUM 0x7F
#define DISCO_LED_HIGH 0xFF
#define DISCO_LED_OFF 0x00
#define DISCO_LED_RED_NAME "evinrude:red"
#define DISCO_LED_GREEN_NAME "evinrude:green"
#define DISCO_LED_BLUE_NAME "evinrude:blue"
DiscoLED::DiscoLED():
RGBLed(DISCO_LED_OFF, DISCO_LED_HIGH, DISCO_LED_MEDIUM, DISCO_LED_LOW),
red_pwm(RED_PWM_INDEX),
green_pwm(GREEN_PWM_INDEX),
blue_pwm(BLUE_PWM_INDEX),
red_led(DISCO_LED_RED_NAME),
green_led(DISCO_LED_GREEN_NAME),
blue_led(DISCO_LED_BLUE_NAME)
{
}
bool DiscoLED::hw_init()
{
/* If led sysfs api is present, use it, else use pwm sysfs api to
drive Disco leds */
if (red_led.init() && green_led.init() && blue_led.init()) {
backend = LED_SYSFS;
return true;
}
backend = PWM_SYSFS;
red_pwm_period = red_pwm.get_period();
green_pwm_period = green_pwm.get_period();
blue_pwm_period = blue_pwm.get_period();
red_pwm.init();
green_pwm.init();
blue_pwm.init();
red_pwm.enable(true);
green_pwm.enable(true);
blue_pwm.enable(true);
return true;
}
bool DiscoLED::hw_set_rgb(uint8_t red, uint8_t green, uint8_t blue)
{
switch (backend) {
case PWM_SYSFS:
red_pwm.set_duty_cycle(red / UINT8_MAX * red_pwm_period);
green_pwm.set_duty_cycle(green / UINT8_MAX * green_pwm_period);
blue_pwm.set_duty_cycle(blue / UINT8_MAX * blue_pwm_period);
break;
case LED_SYSFS:
red_led.set_brightness(red);
green_led.set_brightness(green);
blue_led.set_brightness(blue);
break;
default:
return false;
}
return true;
}
#endif