1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 16:25:16 +03:00

Cosmetics

This commit is contained in:
Bertrand Songis 2014-02-21 10:15:12 +01:00
parent b82ffe308d
commit f857d5454e
3 changed files with 53 additions and 67 deletions

View file

@ -804,15 +804,14 @@ enum PerOutMode {
};
#ifdef INPUT_WARNINGS_GENERATE_SIM_DATA
extern uint8_t checkWarningState;
#if defined(MODULE_ALWAYS_SEND_PULSES)
extern uint8_t startupWarningState;
enum InputWarningStates {
e_InWarnBegin = 0,
e_InWarnThrottleWarnActive = 1,
e_InWarnStartSwitchWarn = 2,
// e_InWarnSwitchWarnActive = 3, currently not needed
e_InWarnFinished = 3,
enum StartupWarningStates {
STARTUP_WARNING_INIT,
STARTUP_WARNING_THROTTLE,
STARTUP_WARNING_SWITCHES,
STARTUP_WARNING_DONE,
};
#endif