AP_Notify: correct dos formatting

This commit is contained in:
Randy Mackay 2014-03-31 17:52:16 +09:00
parent 4b6f03cc11
commit 7bb981f2df
1 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@
#include <ToshibaLED_PX4.h>
#include <ToneAlarm_PX4.h>
#include <ExternalLED.h>
#include <Buzzer.h>
#include <Buzzer.h>
class AP_Notify
{
@ -44,7 +44,7 @@ public:
uint16_t failsafe_gps : 1; // 1 if gps failsafe
// additional flags
uint16_t external_leds : 1; // 1 if external LEDs are enabled (normally only used for copter)
uint16_t external_leds : 1; // 1 if external LEDs are enabled (normally only used for copter)
};
// the notify flags are static to allow direct class access
@ -63,8 +63,8 @@ private:
#if CONFIG_HAL_BOARD == HAL_BOARD_PX4
ToshibaLED_PX4 toshibaled;
ToneAlarm_PX4 tonealarm;
#elif CONFIG_HAL_BOARD == HAL_BOARD_APM1 || CONFIG_HAL_BOARD == HAL_BOARD_APM2
ToshibaLED_I2C toshibaled;
#elif CONFIG_HAL_BOARD == HAL_BOARD_APM1 || CONFIG_HAL_BOARD == HAL_BOARD_APM2
ToshibaLED_I2C toshibaled;
ExternalLED externalled;
Buzzer buzzer;
#else