I am a beginner with ti mikrocontrollers so I'd like to apologize in advance if my problem is something I should have figured out myself. Still I hope someone can point me in the right direction.
I am currently working on a Hercules TMS570 (3137) by using HalCoGen 3.06 and CCS 5.5
My main problems occurs using the het module.
My main problem comes with edge interrupt. I did set pin 16 and 26 on edge0 and edge1 on falling edge. Activated both interrupts on high level and also activated vim-channel 10 & 24 (HET High & HET Low to be on the safe side).
Again my code runs hetInit(); and also
_enable_IRQ();
edgeEnableNotification(hetREG1, edge0);
edgeEnableNotification(hetREG1, edge1);
Still I do not seem to have any activity in the void edgeNotification(hetBASE_t * hetREG,uint32 edge).
Did I make any obvious setup mistakes or should I look for the interrupts in the hetNotification?
FYI: rti-interrupts and can-interrupts are working perfectly in my setup.
Thanks for your time.