如题,我尝试着使用中断除能和使能的API,那么有没有哪个API可以看到我当前是否将所有的key都释放了,或者说看到当前中断是否已经使能了。
* uintptr_t key1, key2;
* key1 = HwiP_disable();
* key2 = HwiP_disable();
* HwiP_restore(key2);
* HwiP_restore(key1);
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.
您好,您这边可以打断点,然后单步调试程序,看变量赋值状态。
具体方法如下:view -》点击expression
哪个API可以看到我当前是否将所有的key都释放了
没有这样的api,这边我为您附上了链接:software-dl.ti.com/.../_hwi_p_8h.html
您这边可以在中断服务程序中点亮或者关闭 led 灯,这样可以更为直观的观看到 中断状态