Tool/software: Code Composer Studio
In the SCS I am using the sensor handler A to generate task alerts ( Io rising edge callback) :
fwGenAlertInterrupt();
evhSetupGpioTrigger(0, AUXIO_I_EXT, EXT_INT_SET, EVH_GPIO_TRIG_ON_EDGE);
In the CCS task process the alert with the following function:
void scTaskAlertCallback(void)
{
// Clear the ALERT interrupt source
scifClearAlertIntSource();
// Wake up the OS task
platfromExtSensorEvent();
// Acknowledge the ALERT event
scifAckAlertEvents();
} //
problem is scTaskAlertCallback() is called endless even alert is cleared and no interrupt generated on GPIO.