Browse Source

AP_Notify: enable display for BeagleBone Blue

master
mirkix 8 years ago committed by Lucas De Marchi
parent
commit
db7cf388f2
  1. 3
      libraries/AP_Notify/AP_Notify.cpp

3
libraries/AP_Notify/AP_Notify.cpp

@ -127,7 +127,8 @@ struct AP_Notify::notify_events_type AP_Notify::events; @@ -127,7 +127,8 @@ struct AP_Notify::notify_events_type AP_Notify::events;
NotifyDevice *AP_Notify::_devices[] = {&boardled, &display, &buzzer};
#elif CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_BLUE
AP_BoardLED boardled;
NotifyDevice *AP_Notify::_devices[] = {&boardled};
Display display;
NotifyDevice *AP_Notify::_devices[] = {&boardled, &display};
#elif CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_RASPILOT
ToshibaLED_I2C toshibaled;
ToneAlarm_Linux tonealarm;

Loading…
Cancel
Save