Hi,
I want use the BLE DFU (In SDK11) to implement software upgrade to my unit.
I want the unit to support BLE and External SPI FLASH (on board) upgrade.
My unit got a modem and i transfered the .BIN file from the .ZIP package to a serial external FLASH (on board).
So , right now i got the .BIN on my external SPI FLASH.
Is there someone who can help me in writing a small code that gets the file from the external flash and replaces the application inside the NRF52832?
I already implemented the reading part from the external FLASH:
////////////////////////////
Loop - until all file written....
{
readDataFromFlash((counter),0,256,data_to_write_from_flash); // This line working
///////// NOT WORKING AREA ///////////
temp_add = DFU_BANK_1_REGION_START;
temp_add += (counter << 8);
sd_flash_write( (uint32_t *)temp_add,(uint32_t *)data_to_write_from_flash,64); // After 3-4 Cycles i get exception......
while (NRF_NVMC->READY == NVMC_READY_READY_Busy)
{
// Do nothing
}
Counter advance by 256...
}
Swap regions in order to load new firmware.....
/////////////////////////
B.r,
Yuval.