Hi, I'm trying to build the project that includes bootloader + application. So I want the CCS to build a binary that includes both.
Here is a linker command file that I'm trying to use:
#define BL_BASE 0x00000000
#define AP_BASE 0x00001000
#define RAM_BASE 0x20000000
MEMORY
{
/* Application stored in and executes from internal flash */
BL_FLASH (RX) : origin = BL_BASE, length = 0x00001000
AP_FLASH (RX) : origin = AP_BASE, length = 0x0000f000
/* Application uses internal RAM for data */
SRAM (RWX) : origin = 0x20000000, length = 0x00018000
}
{
.boot_ivecs: > BL_BASE
.boot_flash: > BL_BASE
.app_ivecs : > AP_BASE
.text : > AP_FLASH
.const : > AP_FLASH
.cinit : > AP_FLASH
.pinit : > AP_FLASH
.vtable : > RAM_BASE
.data : > SRAM
.bss : > SRAM
.sysmem : > SRAM
.stack : > SRAM
}