Tool/software: TI C/C++ Compiler
my question: my device is tms570LC43x ,and The bootloader is programmed in the 1st flash sector, and the application is programmed at the 1st sector of bank1,if the application occur an inturrupt,how to jump the right entry to run The interrupt response program.
Is there an example project (application)for the tms570LC43x?
my bootloader is the following example,/cfs-file/__key/communityserver-discussions-components-files/312/0245.TMS570LC4357_5F00_UART_5F00_Boot.7z and the application in the example is only a binary file ,i run my own application and config the cmd file in the following way :
/*----------------------------------------------------------------------------*/
/* Linker Settings */
--retain="*(.intvecs)"
/*----------------------------------------------------------------------------*/
/* Memory Map */
MEMORY
{
/* USER CODE BEGIN (2) */
/* USER CODE END */
VECTORS (X) : origin=0x00200100 length=0x00000020
FLASH1 (RX) : origin=0x00200120 length=0x001FFFE0
STACKS (RW) : origin=0x08000000 length=0x00001500
RAM (RW) : origin=0x08001500 length=0x0007EB00
/* USER CODE BEGIN (3) */
/* USER CODE END */
}
/*----------------------------------------------------------------------------*/
/* Section Configuration */
SECTIONS
{
.intvecs : {} > VECTORS
.text align(8) : {} > FLASH1
.const align(8) : {} > FLASH1
.cinit align(8) : {} > FLASH1
.pinit align(8) : {} > FLASH1
.bss : {} > RAM
.data : {} > RAM
.sysmem : {} > RAM
}