Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
b1d3cfa
Update RTC
adamgarbo Apr 22, 2020
0d7b0a3
Update RTC.h
adamgarbo Apr 23, 2020
ada4050
Update RTC.cpp
adamgarbo Apr 23, 2020
ad336ad
Update RTC.h
adamgarbo Apr 23, 2020
ba5c816
Update RTC.cpp
adamgarbo Apr 23, 2020
d10ee3f
Update keywords.txt
adamgarbo Apr 23, 2020
17ca26f
Update RTC.cpp
adamgarbo Apr 23, 2020
bf780ab
Update RTC.cpp
adamgarbo Apr 23, 2020
f4d55d1
Update keywords.txt
adamgarbo Apr 23, 2020
2f8ce51
Merge branch 'rtcAlarms' of https://github.com/adamgarbo/Arduino_Apol…
adamgarbo Apr 23, 2020
18c1e6f
Update RTC.h
adamgarbo Apr 24, 2020
0043bf3
Update RTC.cpp
adamgarbo Apr 24, 2020
f3d9c7e
Update keywords.txt
adamgarbo Apr 24, 2020
da71acb
Update RTC.h
adamgarbo Apr 24, 2020
cd53b25
Update keywords.txt
adamgarbo Apr 24, 2020
493200c
Update RTC.cpp
adamgarbo Apr 24, 2020
5fa9db4
Update Example3_TestRTC.ino
adamgarbo Apr 25, 2020
28504be
Update Example2_RTCwithSleep.ino
adamgarbo Apr 25, 2020
ab7447d
Update Example1_getTime.ino
adamgarbo Apr 25, 2020
3d80369
Merge remote-tracking branch 'upstream/master' into rtcAlarms
adamgarbo May 23, 2020
69cc615
Update RTC.h
adamgarbo May 23, 2020
6ae1208
Create Example1_Get_Time.ino
adamgarbo May 23, 2020
fbcdc1d
Delete Example1_getTime.ino
adamgarbo May 23, 2020
a53782e
Create Example2_RTC_Sleep.ino
adamgarbo May 23, 2020
d16b64b
Delete Example2_RTCwithSleep.ino
adamgarbo May 23, 2020
9b18daa
Create Example3_Test_RTC.ino
adamgarbo May 23, 2020
d833ca1
Delete Example3_TestRTC.ino
adamgarbo May 23, 2020
2cf56bf
Create Example4_Set_Epoch.ino
adamgarbo May 23, 2020
bad7234
Create Example5_Set_Alarms.ino
adamgarbo May 23, 2020
ea2e7ea
Create Example6_Rolling_Alarms.ino
adamgarbo May 23, 2020
41e2914
Update Example6_Rolling_Alarms.ino
adamgarbo May 23, 2020
55571c5
Update Example6_Rolling_Alarms.ino
adamgarbo May 26, 2020
7dafea2
Update Example6_Rolling_Alarms.ino
adamgarbo May 26, 2020
9d2390b
Delete Example2_RTC_Sleep.ino
adamgarbo Jun 3, 2020
0a7c956
Delete Example5_Set_Alarms.ino
adamgarbo Jun 3, 2020
ac0bcd0
Delete Example6_Rolling_Alarms.ino
adamgarbo Jun 3, 2020
ca602fe
Update Example1_Get_Time.ino
adamgarbo Jun 3, 2020
877ac2d
Create Example2_Set_Alarms.ino
adamgarbo Jun 3, 2020
6847614
Update Example3_Test_RTC.ino
adamgarbo Jun 3, 2020
c23d225
Update Example4_Set_Epoch.ino
adamgarbo Jun 3, 2020
3383950
Create Example5_Rolling_Alarms.ino
adamgarbo Jun 3, 2020
f3f7ac7
Create Example6_LowPower_Alarm.ino
adamgarbo Jun 3, 2020
2432faa
Update RTC.cpp
adamgarbo Jun 3, 2020
ebb80e5
Update library.properties
adamgarbo Jun 3, 2020
e691f2f
Update RTC alarm comparisons
adamgarbo Jun 3, 2020
f27f5a7
restore Example1 date format
oclyke Jul 14, 2020
670d7fb
fix typo in Example1 restore
oclyke Jul 14, 2020
38d3a2a
Update RTC.cpp
adamgarbo Jul 15, 2020
a2279ed
Update RTC.h
adamgarbo Jul 15, 2020
2656e07
standardize RTC api for setTime and setAlarm
Jul 15, 2020
751ab8f
fix Example3
Jul 15, 2020
d3bd832
automatically update internal structures on setTime and setToCompiler…
Jul 16, 2020
0d0b549
Convert Example2 loop to non-blocking
Jul 16, 2020
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update RTC.cpp
  • Loading branch information
adamgarbo authored Apr 23, 2020
commit 17ca26f201826f11c7736e94287f9029e2e8be01
3 changes: 1 addition & 2 deletions libraries/RTC/src/RTC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ void APM3_RTC::getAlarm()
alarmHour = alm_time.ui32Hour;
alarmMinute = alm_time.ui32Minute;
alarmSeconds = alm_time.ui32Second;
alarmHundredths = alm_time.ui32Hundredths;

alarmHundredths = alm_time.ui32Hundredths;
}

void APM3_RTC::setAlarm(uint8_t hund, uint8_t sec, uint8_t min, uint8_t hour, uint8_t dayOfMonth, uint8_t month)
Expand Down