Mercurial > public > ostc4
diff Small_CPU/Src/baseCPU2.c @ 339:37f45300bc2e PressureMeasure_Improvment
Apply averaging to pressure measurement: In pre versions calculated pressure value jittered +/-10hPa. Since we measure the pressure several time a second but only use one value a second, calc average including not used values
Activated pressure / temperature offsets: The functionality to store offsets was already present in the firmware but values have not been apllied in the RTE => added functionality to include offsets in calculation
Set Max possible surface pressure to 1070hPa (Black sea level)
author | ideenmodellierer |
---|---|
date | Sat, 17 Aug 2019 19:03:47 +0200 |
parents | 143fe85f82a2 |
children | 591c03a1e68d |
line wrap: on
line diff
--- a/Small_CPU/Src/baseCPU2.c Sat Aug 17 18:57:15 2019 +0200 +++ b/Small_CPU/Src/baseCPU2.c Sat Aug 17 19:03:47 2019 +0200 @@ -334,7 +334,7 @@ if(is_init_pressure_done()) { - init_surface_ring(); + init_surface_ring(0); } init_battery_gas_gauge(); HAL_Delay(10); @@ -363,7 +363,7 @@ global.mode = MODE_POWERUP; #else init_pressure(); - init_surface_ring(); + init_surface_ring(0); ADCx_Init(); GPIO_Power_MainCPU_Init();