CCS 7.2.0.00013
TivaWare_C_Series-2.1.4.178
Compiler TI v16.9.6.LTS
The application I'm working on uses a Systick timer scheduler. The callback function SysTickTimer_Scheduler is not being called.
main.c
TickTimer_CfgFnct(TICKTIMER_SCHEDULE_MOTOR_COMMAND_CHECK, (void*)&SysTickTimer_Scheduler, (void*)TICKTIMER_SCHEDULE_MOTOR_COMMAND_CHECK);
void SysTickTimer_Scheduler(int iFunctionId)
TickTimer.c
void TickTimer_CfgFnct (uint8_t n, void (*fnct)(void *), void *arg)
TICKTIMER_SCHEDULE_MOTOR_COMMAND_CHECK = 2.
What part of the tm4c1290ncpdt_startup_ccs.c does this correspond to?
When I step through the code, the address of SysTickTimer_Scheduler function is one less
than the address being passed into the TickTimer_CfgFnct function. I don't why these two
aren't identical.
Thank you for your pointers.
Priya