Other Parts Discussed in Thread: , CC2650
Hi,
I am using CC2640 for simple BLE peripheral application. As default the code is compiled for flashing from default location which is 0x0, placing .intvec at the start of the code and everything was fine.
But due to my application specific requirement I need to move the entire program down to 1st page, which means application start from 0x1000 starting with the .intvec. I successfully moved the code and changed the
m3Hwi.resetVectorAddress = 0x00001000 in appBle.cfg file.
But my application is not running with this changes.
Is it really possible to move .intvec along with the application code to other page of flash(ex:1st page)? If possible, what else I need to do to start my application from 0x1000 location?
Note: I am not using a bootloader code
Thank you