cancel
Showing results for 
Search instead for 
Did you mean: 

Is FOTA (Firmware over the air) upgrade available on STM32F10xx?

Lalit
Associate

Hello STians,

I am new to ST MCUs and working on a custom STM32F100R8 board.

My client needs to have FOTA (Firmware over the air) upgrade option. Board has BLE on USART for the firmware upgrade.

I need to clarify/confirm weather STM32F100R8 is capable of FOTA upgrade? If yes, is there any application note on the procedure?

Thanks in advance.

Lalit

2 REPLIES 2

If you have the over-the-air communication set up then your microcontroller is capable of updating its own firmware. You'll have to write a custom bootloader which will do the job. See the "STM32Cube in-application programming using the USART embedded software (AN4657)" application note and example. The example uses USART for getting the firmware, you'll have to adapt it to use your OTA communications. You can keep the Y-modem protocol used to upload the binary, I think, or you can change it too. [Click Show More for the Links]

https://www.st.com/en/embedded-software/x-cube-iap-usart.html

https://www.st.com/resource/en/application_note/dm00161366.pdf

Thank you @After Forever​ . This really helped. I will work on custom bootloader to use OTA functions.