Other Parts Discussed in Thread: UNIFLASH, SYSCONFIG
Tool/software:
I am trying to implement the dual-image OAD with SSB in CC2745R10. I have flashed the SSB (.bin) and the primary application (.hex) using Uniflash. I wish to store a combined image of SSB and Secondary application in the flash memory following the primary image. So the layout will look like this:
SSB0
App0
SSB1
App1
After OAD, SSB1 and App1 should be the active partition.
I am able building two images: one for the new SSB (with start address as 0x0, although I want this image to be stored right after App0) and one for the secondary app (with addressing considering the above layout). I combined the respective .bin files to create a single binary. However, when I try doing the OAD from the mobile app, and then try to read the memory locations following the primary image, it is all 0xFF. I have used the test_keys provided in the examples in the SDK for app and SSB as suggested, and also created an NVS region for the entire section of flash where I want to store SSB1 and App1.
Is there something missed or a different way of doing this?