mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-31 12:23:23 +08:00
[led] fix compilation warning for lisa/l
not a proper DISABLE function, but lisa/l is not really used anyway
This commit is contained in:
@@ -90,6 +90,7 @@ extern uint8_t led_status[NB_LED];
|
||||
#define LED_ON(i) { led_status[i] = true; }
|
||||
#define LED_OFF(i) { led_status[i] = false; }
|
||||
#define LED_TOGGLE(i) {led_status[i] = !led_status[i];}
|
||||
#define LED_DISABLE(i) LED_OFF(i)
|
||||
|
||||
#define LED_PERIODIC() { \
|
||||
for (uint8_t _cnt = 0; _cnt < NB_LED; _cnt++) { \
|
||||
|
||||
Reference in New Issue
Block a user