Tool/software: TI-RTOS
Hi all,
I have to use this example in C6678:
----------------------------------------------
int eventId = 91;
EventCombiner_dispatchPlug(eventId, &printDebug, HWI_ARG1, TRUE);
EventCombiner_dispatchPlug(eventId, &printDebug2, HWI_ARG1, TRUE);
Hwi_Params_init(¶ms);
params.arg = (eventId / 32);
params.eventId = (eventId / 32);
params.enableInt = TRUE;
Hwi_create(8, &EventCombiner_dispatch, ¶ms, NULL);
----------------------------------------------
I need to create the same HWI interrupt related to the same eventId, but linked to 2 different ISR functions: is it possible?
Could I have an example of that?
Thanks a lot to all!