Mercurial > public > ostc4
diff BootLoader/Src/base_bootlader.c @ 1003:f1b78bc8de10 BootloaderOstc5
Bootloader improve init sequence:
Initialization of the BT module failed with the previous version. Root cause could be that the commands were send to fast to the module and the error counter expired before the configuration was stored. To avoid this problem a timer has been added which delays the transmission of commands by 100ms.
| author | Ideenmodellierer |
|---|---|
| date | Thu, 01 May 2025 17:52:17 +0200 |
| parents | 39f28cd9dc46 |
| children | 4ef0511c6665 |
line wrap: on
line diff
--- a/BootLoader/Src/base_bootlader.c Thu May 01 17:48:25 2025 +0200 +++ b/BootLoader/Src/base_bootlader.c Thu May 01 17:52:17 2025 +0200 @@ -223,13 +223,8 @@ #include "stm32f4xx_hal_flash_ex.h" #include "stm32f4xx_hal_wwdg.h" -//#include "Fonts/Font_T144_plus.h" -#include "Fonts/Font_T84.h" -#include "Fonts/Font_T105.h" -#include "Fonts/Font_T54.h" #include "Fonts/Font_T48_plus.h" -#include "Fonts/Font_T24.h" -#include "Fonts/Font_T42.h" +#include "font_T24_min.h" #include "Fonts/image_battery.h" #include "Fonts/image_heinrichs_weikamp.h" #include "Fonts/image_ostc.h" @@ -416,7 +411,6 @@ } } - int __attribute__((optimize("O0"))) main(void) {
