forked from multiwii/multiwii-firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- correct compilation for LED_FLASHER, PILOTLAMP, LANDING_LIGHTS
git-svn-id: http://multiwii.googlecode.com/svn/trunk/MultiWii_shared@1544 02679b44-d973-9852-f2fa-63770883b36c
- Loading branch information
1 parent
13953cb
commit cc82d08
Showing
2 changed files
with
21 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
#ifndef ALARMS_H_ | ||
#define ALARMS_H_ | ||
|
||
void blinkLED(uint8_t num, uint8_t ontime,uint8_t repeat); | ||
uint8_t isBuzzerON(void); | ||
void alarmHandler(void); | ||
void vario_signaling(void); | ||
void i2CLedRingState(void); | ||
void blinkLedRing(void); | ||
|
||
#ifndef ALARMS_H_ | ||
#define ALARMS_H_ | ||
|
||
void blinkLED(uint8_t num, uint8_t ontime,uint8_t repeat); | ||
uint8_t isBuzzerON(void); | ||
void alarmHandler(void); | ||
void vario_signaling(void); | ||
void i2CLedRingState(void); | ||
void blinkLedRing(void); | ||
void auto_switch_led_flasher(); | ||
void init_led_flasher(); | ||
void led_flasher_set_sequence(uint8_t s); | ||
void led_flasher_autoselect_sequence(); | ||
void init_landing_lights(void); | ||
void auto_switch_landing_lights(void); | ||
void PilotLamp(uint8_t count); | ||
|
||
#endif /* ALARMS_H_ */ |