Hello,
I am working on the Instaspin-BLDC solution on the TMS570LS1227 and wanted to create an interrupt to call sciNotification(). However, after defining all the necessary functions in main(), the last step I'm unable to figure out is where to put the address for this interrupt in the interrupt vector in sys_startup.c. By this I am referring to:
static const t_isrFuncPTR s_vim_init[] = { &phantomInterrupt, &esmHighInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &rtiCompare2Interrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &gioHighLevelInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &adc1Group1Interrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &phantomInterrupt, &adc1Group2Interrupt, &phantomInterrupt, &phantomInterrupt, etc...
How can I find information about which line to replace with the address of my interrupt which calls sciNotification()?
Thank you,
Omkar