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.

RTOS/TMS320C6678: HWI Event Combiner

Part Number: TMS320C6678

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(&params);
    params.arg = (eventId / 32);
    params.eventId = (eventId / 32);
    params.enableInt = TRUE;

    Hwi_create(8, &EventCombiner_dispatch, &params, 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!