In the migration guide, I can read: "Clearing an interrupt event may not take effect immediately."
And an example of required code is given as:
NRF_TIMER0->EVENTS_COMPARE[0] = 0;
(void)NRF_TIMER0->EVENTS_COMPARE[0];
When looking in SDK/components/drivers_nrf/*, I don't seem to see such constructions. Is there some other conditions that make this code not necessary?
thanks