leo
leo

Reputation: 29

Device firmware update over BLE from STM32 to NRF device

Is it possible to update the firmware from an STM32 device to NRF device over BLE?

What is a step-by-step approach to achieve this? The update procedure includes: Prepare the firmware update, transfer the firmware, verify and execute the updated firmware.

Upvotes: 1

Views: 681

Answers (1)

Youssif Saeed
Youssif Saeed

Reputation: 13375

Yes, this is possible. Technically you can do a firmware upgrade of the nRF52 using any BLE device, given that at the end of the day you're just transferring hex packets over BLE. That being said, it is not a trivial task and will probably take weeks (if not months) to implement. Nordic provide libraries for Android and iOS for doing OTA upgrades which might speed up the process, but these libraries don't exist for other platforms (i.e., STM32).

Have a look at the links below as they have references on how to achieve this:

Upvotes: 2

Related Questions