This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to put Application in Bootloader mode without using a Softreset?

I am trying the ANT-OTA DFU Update using an ANT Stick and the nr51422 pca 10028 board.Using the OTA Tester (s210), I am currently doing an OTA Update with the s210 dual bank bootloader. But the application goes into bootloader mode using a NVIC soft reset .Is there another way to put the Application in Bootloader mode ,since my application goes to a power off and on mode frequently to save battery consumption. This would indicate that my application would go to Bootloader mode ,every time it wakes up from a sd_power_system_off. Any other method to put the application to bootloader mode, when it receives a specific ANT Payload? _

Parents
  • Two things: You say you have the device power on/off frequently to save power. You should really re-think this approach. The action of the processor booting, setting up software registers, initializing gpio, peripheral ports and communications stack, initializing clocks, etc., etc. uses gobs of power. I recently went through an exercise where I determined that the boot for a ble device was so traumatic that the lithium button cell voltage actually doesn't recover for several minutes. You should really boot once then go into power save and have user or application just wake up the processor out of power save.

    On switching to boot loader without a system reset. You can do this. It is mentioned in one of the dfu tutorials (sorry can't remember where). Essentially, you just have your program do a graceful shutdown (save out registers, close flash) and switch the program counter to the start of bootloader code. The graceful shutdown part should get discussed on docs for brownout reset. Same idea anyway.

  • Yes, that makes complete sense. Now, I just have to figure out, even when there is DFU code present, I want the program counter to directly go to Application mode, or stay for a minimal time in the "bootloader" mode and go to Application. Also , would have to do some research in terms of graceful shutdown. Because in every SDK Example, NVIC Softreset() is used to go to "bootloader" mode, regardless of single or dual bank.

Reply
  • Yes, that makes complete sense. Now, I just have to figure out, even when there is DFU code present, I want the program counter to directly go to Application mode, or stay for a minimal time in the "bootloader" mode and go to Application. Also , would have to do some research in terms of graceful shutdown. Because in every SDK Example, NVIC Softreset() is used to go to "bootloader" mode, regardless of single or dual bank.

Children
No Data
Related