Tool/software: Code Composer Studio
I have a TM4C123GH6PZ processor working in a custom PCB. I have previously always used JTAG to program it, but would now like to use the Tiva boot loader.
This requires that the start address for the existing app code be modified to accommodate the boot loader.
My UART-based bl_config.h has the following:
#define APP_START_ADDRESS 0x00001000
#define VTABLE_START_ADDRESS 0x00001000
I plan to test my boot loader with the CCS "Hello, World" example project, compiled with two different messages.
What settings changes (for CCS 6.1.1) would I need to make the CCS "Hello World" example start at 0x1000, rather than 0x0?
Thanks!