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.

MSP432,RTOS下的Hwi



CCS环境下TI-RTOS下编程

/* install Button callback */

GPIO_setCallback(Board_BUTTON0, gpioButtonFxn0);

/* Enable interrupts */

GPIO_enableInt(Board_BUTTON0);

上面是例程里面截取的,BUTTON0按键按下时进入 gpioButtonFxn0

请问这是产生的硬件中断Hwi还是?

另外,如果使用内部AD的话,采样一次进一次中断,该怎么配置?

MSP432刚开始接触RTOS,有没有什么比较好的资料推荐?