diff options
author | Keith Packard <keithp@keithp.com> | 2018-08-15 19:17:19 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2018-10-13 08:22:50 -0700 |
commit | 684741765117611b7d666efbdfafd87c6199752c (patch) | |
tree | 6ae2bc7cb368882c9767a9c01d0a0389adc2f988 /src/test/ao_flight_test.c | |
parent | c417ab1de2a083b5fcff2e081e4feb2a65887903 (diff) |
altos: Use stdbool true/false instead of TRUE/FALSE
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test/ao_flight_test.c')
-rw-r--r-- | src/test/ao_flight_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ao_flight_test.c b/src/test/ao_flight_test.c index a171930e..6d007575 100644 --- a/src/test/ao_flight_test.c +++ b/src/test/ao_flight_test.c @@ -227,8 +227,8 @@ ao_gps_angle(void) extern enum ao_flight_state ao_flight_state; -#define FALSE 0 -#define TRUE 1 +#define false 0 +#define true 1 volatile struct ao_data ao_data_ring[AO_DATA_RING]; volatile uint8_t ao_data_head; |