Skip to content

Commit

Permalink
Update IridiumSBD.cpp
Browse files Browse the repository at this point in the history
Missing semicolon!
  • Loading branch information
mikalhart committed Dec 4, 2013
1 parent 6dd86b3 commit d165e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IridiumSBD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ int IridiumSBD::internalMSSTMWorkaround(bool &okToProceed)
According to Iridium 9602 Product Bulletin of 7 May 2013, to overcome a system erratum:
"Before attempting any of the following commands: +SBDDET, +SBDREG, +SBDI, +SBDIX, +SBDIXA the field application
should issue the AT command –MSSTM to the transceiver and evaluate the response to determine if it is valid or not:
should issue the AT command MSSTM to the transceiver and evaluate the response to determine if it is valid or not:
Valid Response: "---MSSTM: XXXXXXXX" where XXXXXXXX is an eight---digit hexadecimal number.
Expand Down Expand Up @@ -442,7 +442,7 @@ bool IridiumSBD::waitForATResponse(char *response, int responseSize, const char
bool done = false;
int matchPromptPos = 0; // Matches chars in prompt
int matchTerminatorPos = 0; // Matches chars in terminator
enum {LOOKING_FOR_PROMPT, GATHERING_RESPONSE, LOOKING_FOR_TERMINATOR}
enum {LOOKING_FOR_PROMPT, GATHERING_RESPONSE, LOOKING_FOR_TERMINATOR};
int promptState = prompt ? LOOKING_FOR_PROMPT : LOOKING_FOR_TERMINATOR;
console(F("<< "));
for (unsigned long start=millis(); millis() - start < 1000UL * atTimeout;)
Expand Down

0 comments on commit d165e55

Please sign in to comment.