Skip to content

Commit 0cab3f9

Browse files
committed
Switch instantiations to lowercase
1 parent 58124ed commit 0cab3f9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

libraries/RTC/keywords.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ alarmMinute LITERAL2
4141
alarmSeconds LITERAL2
4242
alarmHundredths LITERAL2
4343
alarmTextWeekday LITERAL2
44-
RTC LITERAL2
44+
rtc LITERAL2

libraries/RTC/src/RTC.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "RTC.h"
77
#include <time.h>
88

9-
Apollo3RTC RTC;
9+
Apollo3RTC rtc;
1010

1111
am_hal_rtc_time_t hal_time;
1212
am_hal_rtc_time_t alm_time;

libraries/RTC/src/RTC.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#include <Arduino.h>
1010

11-
#ifdef RTC
12-
#undef RTC
11+
#ifdef rtc
12+
#undef rtc
1313
#endif
1414

1515
class Apollo3RTC {
@@ -57,6 +57,6 @@ class Apollo3RTC {
5757
const char *alarmTextWeekday;
5858
};
5959

60-
extern Apollo3RTC RTC;
60+
extern Apollo3RTC rtc;
6161

6262
#endif // _APOLLO3_LIBRARIES_RTC_H_

libraries/WDT/keywords.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ WDT_128HZ KEYWORD2
2626
WDT_16 KEYWORD2
2727
WDT_1HZ KEYWORD2
2828
WDT1_16HZ KEYWORD2
29-
WDT LITERAL2
29+
wdt LITERAL2

0 commit comments

Comments
 (0)