mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-31 20:38:27 +08:00
replace TRUE/FALSE by stdbool true/false
This commit is contained in:
committed by
Gautier Hattenberger
parent
5c1e4260fe
commit
8edab84dd4
@@ -46,12 +46,12 @@ static inline void main_event_task(void)
|
||||
ReadPprzBuffer();
|
||||
if (pprz_msg_received) {
|
||||
pprz_parse_payload();
|
||||
pprz_msg_received = FALSE;
|
||||
pprz_msg_received = false;
|
||||
}
|
||||
}
|
||||
if (dl_msg_available) {
|
||||
main_dl_parse_msg();
|
||||
dl_msg_available = FALSE;
|
||||
dl_msg_available = false;
|
||||
LED_TOGGLE(1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user