Part Number: TMS570LC4357
Hi all,
we're developing a bootloader using ethernet communication. So far we managed to erase, program and jump to the application.
The problem is: during the application execution only background functionsare executed while the ones inside the timer interrupt aren't.
The bootloader resides in flash from 0x0000 to 0x7FFF. the application resides from 0x8000.
We remapped the application vector table to 0x8000 and tried to follow the instructions at this link:

So now in the bootloader project we have:
resetEntry
b _c_int00
undefEntry
b #0x7FF8 ;undefEntry
svcEntry
b #0x7FF8; svcEntry
prefetchEntry
b #0x7FF8;prefetchEntry
dataEntry
b #0x7FF8; dataEntry
b #0x7FF8; phantomInterrupt
ldr pc,[pc,#-0x1b0]
ldr pc,[pc,#-0x1b0]
Besides we enabled the IRQ Handling via VIC Controller.
Still no changes.
Any suggestion?
Thanks
Valentina