1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +03:00

Merge pull request #83 from goebish/cleanflight-throttle-led

Throttle level indicator led mode
This commit is contained in:
Dominic Clifton 2014-09-19 00:18:55 +01:00
commit 9723df947e
4 changed files with 28 additions and 3 deletions

View file

@ -43,7 +43,8 @@ typedef enum {
LED_FUNCTION_INDICATOR = (1 << 6),
LED_FUNCTION_WARNING = (1 << 7),
LED_FUNCTION_FLIGHT_MODE = (1 << 8),
LED_FUNCTION_ARM_STATE = (1 << 9)
LED_FUNCTION_ARM_STATE = (1 << 9),
LED_FUNCTION_THROTTLE = (1 << 10)
} ledFlag_e;
typedef struct ledConfig_s {