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.

TMS570LS1224: System reset hangs on undefEntry after flashing the software

Part Number: TMS570LS1224

Tool/software:

When I load the program onto the TMS570LS1224 controller with Freertos and application software, it is not showing the run option in CCS. We have assigned some part of the memory to the bootloader as well. The error LED also begins to blink.  I think there may be a memory misalignment going on. For your reference, I'll attach the memory mapping and sys_intvecs.asm snippet. Please have a look.

  • Hi Nikita,

    I think couple of things need to be correct in your linker file.

    1. Your origin addresses are looks wrong.

    For example:

    Consider your vectors length, it is 0x24 right that means compiler will allocate memory from 0x00000000 to the 0x00000023. So, if you assign 0x24 length then the next sector origin address should be 0x00000024 not 0x00000025.

    2. Vectors length can be 0x20.

    You can refer below one once:

    --
    Thanks & regards,
    Jagadish.