File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
name =SparkFun Swarm Satellite Arduino Library
2
- version =1.1.9
2
+ version =1.1.10
3
3
author =SparkFun Electronics <techsupport@sparkfun.com>
4
4
maintainer =SparkFun Electronics <sparkfun.com>
5
5
sentence =Library for the Swarm M138 satellite modem<br/><br/>
Original file line number Diff line number Diff line change @@ -5397,12 +5397,12 @@ Swarm_M138_Error_e SWARM_M138::waitForResponse(const char *expectedResponseStart
5397
5397
// if (_printDebug == true)
5398
5398
// {
5399
5399
// _debugPort->print(F("waitForResponse: errorStart: "));
5400
- // _debugPort->println((char *)&_swarmBacklog [errorStartedAt]);
5400
+ // _debugPort->println((char *)&responseDest [errorStartedAt]);
5401
5401
// }
5402
- err = checkChecksum ((char *)&_swarmBacklog [errorStartedAt]);
5402
+ err = checkChecksum ((char *)&responseDest [errorStartedAt]);
5403
5403
if (err == SWARM_M138_ERROR_SUCCESS)
5404
5404
{
5405
- extractCommandError ((char *)&_swarmBacklog [errorStartedAt]);
5405
+ extractCommandError ((char *)&responseDest [errorStartedAt]);
5406
5406
err = SWARM_M138_ERROR_ERR;
5407
5407
}
5408
5408
}
@@ -5411,9 +5411,9 @@ Swarm_M138_Error_e SWARM_M138::waitForResponse(const char *expectedResponseStart
5411
5411
// if (_printDebug == true)
5412
5412
// {
5413
5413
// _debugPort->print(F("waitForResponse: responseStart: "));
5414
- // _debugPort->println((char *)&_swarmBacklog [responseStartedAt]);
5414
+ // _debugPort->println((char *)&responseDest [responseStartedAt]);
5415
5415
// }
5416
- err = checkChecksum ((char *)&_swarmBacklog [responseStartedAt]);
5416
+ err = checkChecksum ((char *)&responseDest [responseStartedAt]);
5417
5417
}
5418
5418
}
5419
5419
else
You can’t perform that action at this time.
0 commit comments