X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fproduct%2Fao_micropeak.c;h=22559aaff085d0df5405f7e9c445d701b4a5055d;hb=HEAD;hp=f9960eb8f17530796faa857294ebbc58a4e41545;hpb=1085ec5d57e0ed5d132f2bbdac1a0b6a32c0ab4a;p=fw%2Faltos diff --git a/src/product/ao_micropeak.c b/src/product/ao_micropeak.c index f9960eb8..22559aaf 100644 --- a/src/product/ao_micropeak.c +++ b/src/product/ao_micropeak.c @@ -22,7 +22,6 @@ #include #include -static struct ao_ms5607_sample sample; static struct ao_ms5607_value value; alt_t ground_alt, max_alt; @@ -31,16 +30,16 @@ alt_t ao_max_height; void ao_pa_get(void) { - ao_ms5607_sample(&sample); - ao_ms5607_convert(&sample, &value); - pa = value.pres; + ao_ms5607_sample(&ao_ms5607_current); + ao_ms5607_convert(&ao_ms5607_current, &value); + pa = (uint32_t) value.pres; } static void ao_compute_height(void) { - ground_alt = ao_pa_to_altitude(pa_ground); - max_alt = ao_pa_to_altitude(pa_min); + ground_alt = ao_pa_to_altitude((pres_t) pa_ground); + max_alt = ao_pa_to_altitude((pres_t) pa_min); ao_max_height = max_alt - ground_alt; } @@ -58,7 +57,7 @@ ao_pips(void) int main(void) { - ao_led_init(LEDS_AVAILABLE); + ao_led_init(); ao_timer_init(); /* Init external hardware */ @@ -74,7 +73,7 @@ main(void) ao_report_altitude(); ao_pips(); ao_log_micro_dump(); -#if BOOST_DELAY +#ifdef BOOST_DELAY ao_delay(BOOST_DELAY); #endif @@ -85,7 +84,8 @@ main(void) ao_report_altitude(); for (;;) { cli(); - set_sleep_mode(SLEEP_MODE_PWR_DOWN); +#pragma GCC diagnostic ignored "-Wconversion" + set_sleep_mode((uint8_t) SLEEP_MODE_PWR_DOWN); sleep_mode(); } }