I am new to nrf52832. I am using pin change interrupt. I want to know that how to mask pin change interrupt?
Thanks in Advance
I am new to nrf52832. I am using pin change interrupt. I want to know that how to mask pin change interrupt?
Thanks in Advance
Mask as in to make the MCU ignore the interrupts generated. Then you can do that by disabling them at NVIC level (even though the interrupt is enabled in GPIO level)
NVIC_EnableIRQ(GPIOTE_IRQn);
If you are using BLE softdevice then, it is as below
sd_nvic_DisableIRQ(GPIOTE_IRQn);
Thanks for quick response.
How to configure pin change interrupt for mask
Thanks for quick response.
How to configure pin change interrupt for mask