We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 336a03d commit 7ec02a0Copy full SHA for 7ec02a0
targets/TARGET_ONSEMI/TARGET_NCS36510/exceptions.c
@@ -123,11 +123,13 @@ void fIrqUart2Handler(void)
123
Uart2_Irq();
124
}
125
126
+#ifdef DEVICE_RTC
127
/** Call the RTC IRQ handler */
128
void fIrqRtcHandler(void)
129
{
130
fRtcHandler();
131
132
+#endif
133
134
/** Call the I2C IRQ handler */
135
void fIrqI2CHandler(void)
targets/TARGET_ONSEMI/TARGET_NCS36510/rtc.c
@@ -41,6 +41,9 @@
41
* if the alarm occurs upon a Counter increment condition.
42
*
43
*/
44
+
45
46
47
#include "rtc.h"
48
#include "mbed_assert.h"
49
#include "lp_ticker_api.h"
@@ -300,3 +303,5 @@ boolean fIsRtcEnabled(void)
300
303
return False;
301
304
302
305
306
307
0 commit comments