Is there a query counterpart to SysCtlPeripheralEnable()?
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.
Hi John,
If you are asking the counterpart as to disable the peripheral then it would be SysCtlPeripheralDisable(). If you want to determine if the peripheral is ready for access then that would be SysCtlPeripheralReady() which will return a bool value.


Thanks, that is helpful. I want to make sure I do not try to disable an interrupt for a non-enabled peripheral.
JH