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(¶ms);
params.eventid = 62; params.arg=2;params.enableInt = true;
Hwi_create(15,&myisr,¶m,&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.