forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerialLED.cpp
60 lines (47 loc) · 1.58 KB
/
SerialLED.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
/*
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 "SerialLED.h"
#if AP_NOTIFY_SERIALLED_ENABLED
extern const AP_HAL::HAL& hal;
SerialLED::SerialLED(uint8_t led_off, uint8_t led_bright, uint8_t led_medium, uint8_t led_dim) :
RGBLed(led_off, led_bright, led_medium, led_dim)
{
}
bool SerialLED::init()
{
enable_mask = init_ports();
return true;
}
bool SerialLED::hw_set_rgb(uint8_t red, uint8_t green, uint8_t blue)
{
if (enable_mask == 0) {
// nothing is enabled, no pins set as LED output
return true;
}
AP_SerialLED *led = AP_SerialLED::get_singleton();
if (led == nullptr) {
return false;
}
for (uint16_t chan=0; chan<16; chan++) {
if ((1U<<chan) & enable_mask) {
led->set_RGB(chan+1, -1, red, green, blue);
}
}
for (uint16_t chan=0; chan<16; chan++) {
if ((1U<<chan) & enable_mask) {
led->send(chan+1);
}
}
return true;
}
#endif // AP_NOTIFY_SERIALLED_ENABLED