Hello
I'm using MCUXpresso v11.6 with an MKL33Z256.
I have two "Build configuration":
- Debug
-Release (=Debug but with code optimization)
I would also modify the Memory mapping between Debug and Release configuration. Because the Debug is run alone (start at 0x0), and in build release, it will load by a Bootloader. Then the application code not start at 0x0( because it will be the Bootloader) but at another address (The boot will jump to the application and set the offset value of the Vector table)
But into MCUXpresso, the memory configuration seem not be configurable for each "Build configuration".
I have a way to resolve this problem?
Regards