This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

can not download app from nRFgo Studio after download bootloader

Hi, Nordic I use SDK12.1 with nRF52832, I found one issue:

if I do not program bootloader, nRFgo Studio can program app.

First, erase all flash, then program softdevice.

If next I program bootloader, app can not program success, show flash is not erase

If next I program app, bootloader can not program success, show flash is not erase.

I do not understand why, bootloader and app ram address and size is OK.

s132_nrf52_3.0.0_softdevice.hex

nRF52_Application.hex

nRF52_Bootloader.hex

nRF52_application.rar

nRF52_bootloader.rar

Parents
  • The nRF52832 has 512kB (0x80000 bytes) of Flash. If the application starts at 0x1F000 occupies 0x61000 bytes, then there is no room for the bootloader, since 0x1F000 + 0x61000 = 0x80000. Hence, you must adjust the size of the application to make room for the bootloader, i.e. application ROM size = 0x73000 - 0x1F000 = 0x54000.

Reply
  • The nRF52832 has 512kB (0x80000 bytes) of Flash. If the application starts at 0x1F000 occupies 0x61000 bytes, then there is no room for the bootloader, since 0x1F000 + 0x61000 = 0x80000. Hence, you must adjust the size of the application to make room for the bootloader, i.e. application ROM size = 0x73000 - 0x1F000 = 0x54000.

Children
No Data
Related