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 d42615d commit 7851b87Copy full SHA for 7851b87
src/RTCZero.cpp
@@ -107,7 +107,7 @@ void RTCZero::disableAlarm()
107
;
108
}
109
110
-void RTCZero::attachInterrupt(RTC_voidFuncPtr callback)
+void RTCZero::attachInterrupt(voidFuncPtr callback)
111
{
112
RTC_callBack = callback;
113
src/RTCZero.h
@@ -25,7 +25,7 @@
25
26
#include "Arduino.h"
27
28
-typedef void(*RTC_voidFuncPtr)(void);
+typedef void(*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(RTC_voidFuncPtr callback);
+ void attachInterrupt(voidFuncPtr callback);
57
void detachInterrupt();
58
59
/* Get Functions */
0 commit comments