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.

TMS320C6678: tms320c6678

Part Number: TMS320C6678
Other Parts Discussed in Thread: SYSBIOS

hi.

we want to use gpio10 as an interrupt to 6678,and we use sysbios.

we config the system int  to 90,host int to 2, program is as follow:

Hwi_Params params;

Hwi_Params_init(&params);

params.eventid = 62; params.arg=2;params.enableInt = true;

Hwi_create(15,&myisr,&param,&eb);

we config gpio10 to input pin, and enable rising edge intr, when I create a rising edge on gpio10 pin, it can't jump into the isr func.