Hello
I am trying to understand interrupt handling.
I saw this page.
How can I enable the "INTEN" set?
Thank you!
Hello,
You can set INTENSET registers directly if you want, but it's usually done inside the SDK drivers. The code line below is an example of this. It enables interrupt on the COMPARE[5] TIMER 1 event
NRF_TIMER1->INTENSET |= TIMER_INTENSET_COMPARE5_Msk;