Other Parts Discussed in Thread: HALCOGEN
Hi TI Team,
I need to create a RTI for runnable function inside the UART bootloader.
I have enabled the RTI driver , VIM Channel 0-31 as RTI Compare 1 is enabled , RTI Compare Compare 1 period as 20.000 ms .
initialization calls in main file
rtiEnableNotification(rtiREG1,rtiNOTIFICATION_COMPARE1);
_enable_IRQ_interrupt_();
rtiStartCounter(rtiREG1,rtiCOUNTER_BLOCK1);
RTI Notification function is created, but I didn't get any notification in rtiNotification in UART bootloader code
void rtiNotification(rtiBASE_t *rtiREG, uint32 notification)
{
gioToggleBit(gioPORTB,2);
}
So it is reset the code from _c_int00 after _enable_IRQ_interrupt_(); are else it don't call rtiNotification.
Thanks in advance
Santhosh