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 652f85b commit 6c8d5eaCopy full SHA for 6c8d5ea
src/RTCZero.cpp
@@ -108,7 +108,7 @@ void RTCZero::disableAlarm()
108
;
109
}
110
111
-void RTCZero::attachInterrupt(voidFuncPtr callback)
+void RTCZero::attachInterrupt(RTC_voidFuncPtr callback)
112
{
113
RTC_callBack = callback;
114
src/RTCZero.h
@@ -25,7 +25,7 @@
25
26
#include "Arduino.h"
27
28
-typedef void(*voidFuncPtr)(void);
+typedef void(*RTC_voidFuncPtr)(void);
29
30
class RTCZero {
31
public:
@@ -53,7 +53,7 @@ class RTCZero {
53
void enableAlarm(Alarm_Match match);
54
void disableAlarm();
55
56
- void attachInterrupt(voidFuncPtr callback);
+ void attachInterrupt(RTC_voidFuncPtr callback);
57
void detachInterrupt();
58
59
/* Get Functions */
0 commit comments