Browse Source

AP_Notify: pixhawk and vrbrain use in-tree ToshibaLED

master
Randy Mackay 8 years ago
parent
commit
d8ae56f455
  1. 5
      libraries/AP_Notify/AP_Notify.cpp

5
libraries/AP_Notify/AP_Notify.cpp

@ -28,7 +28,6 @@
#include "ToneAlarm_PX4_Solo.h" #include "ToneAlarm_PX4_Solo.h"
#include "ToshibaLED.h" #include "ToshibaLED.h"
#include "ToshibaLED_I2C.h" #include "ToshibaLED_I2C.h"
#include "ToshibaLED_PX4.h"
#include "VRBoard_LED.h" #include "VRBoard_LED.h"
#include "DiscreteRGBLed.h" #include "DiscreteRGBLed.h"
#include "DiscoLED.h" #include "DiscoLED.h"
@ -85,7 +84,7 @@ struct AP_Notify::notify_events_type AP_Notify::events;
#else #else
AP_BoardLED boardled; AP_BoardLED boardled;
#endif #endif
ToshibaLED_PX4 toshibaled; ToshibaLED_I2C toshibaled;
Display display; Display display;
#if AP_NOTIFY_SOLO_TONES == 1 #if AP_NOTIFY_SOLO_TONES == 1
@ -108,7 +107,7 @@ struct AP_Notify::notify_events_type AP_Notify::events;
#else #else
VRBoard_LED boardled; VRBoard_LED boardled;
#endif #endif
ToshibaLED_PX4 toshibaled; ToshibaLED_I2C toshibaled;
ExternalLED externalled; ExternalLED externalled;
NotifyDevice *AP_Notify::_devices[] = {&boardled, &toshibaled, &externalled, &tonealarm}; NotifyDevice *AP_Notify::_devices[] = {&boardled, &toshibaled, &externalled, &tonealarm};

Loading…
Cancel
Save