Hi!
I know this might be a stupid question to you but still... I am not able to disable i.e. a timer0 cc(3) IRQ.
My way to enable it in first place:
NRF_TIMER0->INTENSET = (TIMER_INTENSET_COMPARE3_Enabled << TIMER_INTENSET_COMPARE3_Pos);
and how i thought to disable it again:
NRF_TIMER0->INTENCLR = (TIMER_INTENCLR_COMPARE3_Enabled << TIMER_INTENCLR_COMPARE3_Pos);
Unfortunatly this wont work.
I also played around with online (JTAG) with those 2 registers and i could not really figure out how this clear register is supposed to work :(
RGDS