You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to update the firmware of the BB3 from a file on the SD card. This issue is jus about the plain update method itself (probably an additional small step between the current bootloader (supporting dfu-util) and the main software).
I think this is an important enabler for other UI/user functions that download the firmware file to the BB3:
directly via ethernet from GitHub
via studio (USB or ethernet)
The text was updated successfully, but these errors were encountered:
I believe that the first step here is to find out how to make custom bootloader and does it can be part of the firmware or factory default bootloader needs to be replaced.
As I know we cannot remove current factory default boot loader - so it stays. To have SD card bootloader we would need small application that reads SD card and writes data to memory address of STM32.
Factory default bootloader jumps to custom bootloader address that will be at 0x08000000
custom bootloader checks if file is available - or button is pressed
custom bootloader loads app
custom bootloader jumps to app address that has offset (depending of bootloader size)
We can also find already written bootloader and check how it works...
I would like to be able to update the firmware of the BB3 from a file on the SD card. This issue is jus about the plain update method itself (probably an additional small step between the current bootloader (supporting dfu-util) and the main software).
I think this is an important enabler for other UI/user functions that download the firmware file to the BB3:
The text was updated successfully, but these errors were encountered: