[nrf52811] use RTC1 instead of RTC0 (#6023)

This commit is contained in:
Jintao Lin
2020-12-30 11:21:31 -08:00
committed by GitHub
parent 82c682fbc9
commit 263084baef
@@ -55,7 +55,7 @@
*
*/
#ifndef RTC_INSTANCE
#define RTC_INSTANCE NRF_RTC0
#define RTC_INSTANCE NRF_RTC1
#endif
/**
@@ -65,7 +65,7 @@
*
*/
#ifndef RTC_IRQ_HANDLER
#define RTC_IRQ_HANDLER RTC0_IRQHandler
#define RTC_IRQ_HANDLER RTC1_IRQHandler
#endif
/**
@@ -75,7 +75,7 @@
*
*/
#ifndef RTC_IRQN
#define RTC_IRQN RTC0_IRQn
#define RTC_IRQN RTC1_IRQn
#endif
/**