Skip to content

v3.0.6 - resolve issue #16 #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ passThruI2Cread KEYWORD2
passThruI2Cwrite KEYWORD2
configureSleepPin KEYWORD2
setSleepPin KEYWORD2
beginSerialPort KEYWORD2
endSerialPort KEYWORD2

#######################################
# Constants (LITERAL1)
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=IridiumSBDi2c
version=3.0.5
version=3.0.6
author=Mikal Hart and Paul Clark (PaulZC)
maintainer=SparkFun Electronics <sparkfun.com>
sentence=This library supports satellite data transmissions from anywhere on earth using the RockBLOCK family of Iridium 9602 and 9603 modems.
Expand Down
1 change: 1 addition & 0 deletions src/IridiumSBD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ int IridiumSBD::getSystemTime(struct tm &tm)
epoch_start.tm_hour = 14;
epoch_start.tm_min = 23;
epoch_start.tm_sec = 55;
epoch_start.tm_isdst = 0; // Resolves #16

unsigned long ticks_since_epoch = strtoul(msstmResponseBuf, NULL, 16);

Expand Down