This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

NFRF52 NFC SENSE MODE Interrupt

Hello Everyone, I want to use NFC on nrf52 DK to wake up the board from System off. Is there any examples similar to this situation where I can learn more about NFC and Sense mode? I am using Softdevice s132. I am enabling Sense mode using

NRF_NFCT->TASKS_SENSE = 1;

as soon as I enter main like

int main(void)
{
    uint32_t err_code;
	NRF_NFCT->TASKS_SENSE = 1;
   

    timers_init();`

I am new to Nordic board as well as NFC so please bear with my silly questions.

Related