mirror of https://github.com/ArduPilot/ardupilot
AP_Notify: remove unused enumeration
this was copied over into the OreoLED driver
This commit is contained in:
parent
219a13e45f
commit
df911e9e76
|
@ -51,13 +51,6 @@ public:
|
||||||
return _singleton;
|
return _singleton;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Oreo LED Themes
|
|
||||||
enum Oreo_LED_Theme {
|
|
||||||
OreoLED_Disabled = 0, // Disabled the OLED driver entirely
|
|
||||||
OreoLED_Aircraft = 1, // Standard aviation themed lighting
|
|
||||||
OreoLED_Automobile = 2, // Automobile themed lighting (white front, red back)
|
|
||||||
};
|
|
||||||
|
|
||||||
enum Notify_LED_Type {
|
enum Notify_LED_Type {
|
||||||
Notify_LED_None = 0, // not enabled
|
Notify_LED_None = 0, // not enabled
|
||||||
Notify_LED_Board = (1 << 0), // Built in board LED's
|
Notify_LED_Board = (1 << 0), // Built in board LED's
|
||||||
|
|
|
@ -136,7 +136,7 @@ private:
|
||||||
OREOLED_MODE_RGB_EXTENDED,
|
OREOLED_MODE_RGB_EXTENDED,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Oreo LED modes
|
// Oreo LED Themes
|
||||||
enum Oreo_LED_Theme {
|
enum Oreo_LED_Theme {
|
||||||
OreoLED_Disabled = 0,
|
OreoLED_Disabled = 0,
|
||||||
OreoLED_Aircraft = 1,
|
OreoLED_Aircraft = 1,
|
||||||
|
|
Loading…
Reference in New Issue