Skip to content

Commit 5d07a8c

Browse files
authored
Merge pull request #33 from sparkfun/release_candidate
v1.1.10
2 parents edccf2d + 9dfdc8e commit 5d07a8c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SparkFun Swarm Satellite Arduino Library
2-
version=1.1.9
2+
version=1.1.10
33
author=SparkFun Electronics <techsupport@sparkfun.com>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=Library for the Swarm M138 satellite modem<br/><br/>

src/SparkFun_Swarm_Satellite_Arduino_Library.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5397,12 +5397,12 @@ Swarm_M138_Error_e SWARM_M138::waitForResponse(const char *expectedResponseStart
53975397
// if (_printDebug == true)
53985398
// {
53995399
// _debugPort->print(F("waitForResponse: errorStart: "));
5400-
// _debugPort->println((char *)&_swarmBacklog[errorStartedAt]);
5400+
// _debugPort->println((char *)&responseDest[errorStartedAt]);
54015401
// }
5402-
err = checkChecksum((char *)&_swarmBacklog[errorStartedAt]);
5402+
err = checkChecksum((char *)&responseDest[errorStartedAt]);
54035403
if (err == SWARM_M138_ERROR_SUCCESS)
54045404
{
5405-
extractCommandError((char *)&_swarmBacklog[errorStartedAt]);
5405+
extractCommandError((char *)&responseDest[errorStartedAt]);
54065406
err = SWARM_M138_ERROR_ERR;
54075407
}
54085408
}
@@ -5411,9 +5411,9 @@ Swarm_M138_Error_e SWARM_M138::waitForResponse(const char *expectedResponseStart
54115411
// if (_printDebug == true)
54125412
// {
54135413
// _debugPort->print(F("waitForResponse: responseStart: "));
5414-
// _debugPort->println((char *)&_swarmBacklog[responseStartedAt]);
5414+
// _debugPort->println((char *)&responseDest[responseStartedAt]);
54155415
// }
5416-
err = checkChecksum((char *)&_swarmBacklog[responseStartedAt]);
5416+
err = checkChecksum((char *)&responseDest[responseStartedAt]);
54175417
}
54185418
}
54195419
else

0 commit comments

Comments
 (0)