This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi we've got the issue and escalated to E2E for some help, please expect the response.
Thanks.
Hi, our expert is out of office until 4/7. Please expect a delayed response.
Also, please see this FAQ: software-dl.ti.com/.../index.html.
Sorry for any inconvenience.
Hi,
From your message, the ethernet bootloader works well and the application image is loaded to flash. The issue is that the application image doesn't work, right?
This is the memory map in your linker cmd file:
MEMORY
{
VECTORS (X) : origin=0x00000000 length=0x00000020
FLASH0 (RX) : origin=0x00000020 length=0x0017FFE0
FLASH1 (RX) : origin=0x001A0000 length=0x00180000
STACKS (RW) : origin=0x08000000 length=0x00001500
RAM (RW) : origin=0x08001500 length=0x0003EB00
/* USER CODE BEGIN (2) */
/* USER CODE END */
}
you should use application start address here.
For example:
MEMORY
{
/* USER CODE BEGIN (2) */
VECTORS (X) : origin=0x00200020 length=0x00000020
FLASH_CODE (RX) : origin=0x00200040 length=0x8000 - 0x40 fill=0xFFFFFFFF /*sector 4/5*/
FLASH0 (RX) : origin=0x00028000 length=0x00200000 - 0x28000
Where 0x200020 is start address of the application image.