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.

CC1310: 如何查看当前中断是否使能

Part Number: CC1310

如题,我尝试着使用中断除能和使能的API,那么有没有哪个API可以看到我当前是否将所有的key都释放了,或者说看到当前中断是否已经使能了。

* uintptr_t key1, key2;
* key1 = HwiP_disable();
* key2 = HwiP_disable();
* HwiP_restore(key2);
* HwiP_restore(key1);