Commit 0b00edad authored by Frank Holtz's avatar Frank Holtz

Fix RTC1 EVTENSET/INTENSET

  - Correction of EVTENSET/INTENSET
parent 6622bd13
......@@ -41,8 +41,8 @@ void init( void )
NRF_CLOCK->TASKS_LFCLKSTART = 1UL;
NRF_RTC1->PRESCALER = 0;
NRF_RTC1->EVTENSET = RTC_INTENSET_OVRFLW_Msk;
NRF_RTC1->INTENSET = RTC_EVTEN_OVRFLW_Msk;
NRF_RTC1->INTENSET = RTC_INTENSET_OVRFLW_Msk;
NRF_RTC1->EVTENSET = RTC_EVTEN_OVRFLW_Msk;
NRF_RTC1->TASKS_START = 1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment