Part Number: MCU-PLUS-SDK-AM243X
Tool/software:
I wasn't able to find an active TIMER example in the SDK (No projects to import from <SDK>/examples/drivers/timer ).
So I am trying to setup a TIMER / ISR manually.
1) In SYSCFG under the TIMER option I created a timer called "TIMER0"
2) After building I see the TIMER0 setup in "ti_dpl_config.c"
3) In "ti_dpl_config.c", SYSCFG creates the callback ISR as "TimerP_isr0", which is declared in the same "ti_dpl_config.c" file.
Because SYSCFG is creating the ISR routine, whenever I BUILD the project the "ti_dpl_config.c" gets reset to default.
How do I link the TIMER0 ISR to also trigger some ISR I created in my main application code?