This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Interrupt issues with intc_examples

Hi everyone,

I'm discovering the joys of CSL with a c5535 ez DSP kit. I tested intc_example which demonstrated interrupt capabilities
using SAR periph. Everything works fine.

Now I modified the code in order to use it with Timer interrupts.

    /* IRQ_config */
    irqConfig.funcAddr = &sarISR;
    irqConfig.funcArg = 2;

    /*  Set */
    IRQ_config(TINT_EVENT,&irqConfig);

    /* Verify proper setup */
    IRQ_getConfig(TINT_EVENT,&irqQuery);

The issue is that when I compare irqConfig.funcAddr(0x0000B7EE) to irqQuery.funcAddr (0x0004B7EE), their is
this difference (4) which throws me in a loop and later when the interrupt shows up I never retrieve it.

Well, if you have some time to spend on it, just switch SAR_EVENT with TINT_EVENT in the demo code and see
what happens... If you have some explaination, that would swell!

Thanks,

Jean-Christophe