Skip to content

Commit 5ccdf26

Browse files
committed
v2.0.15 - corrects #63
1 parent 1aef0bb commit 5ccdf26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SparkFun u-blox GNSS Arduino Library
2-
version=2.0.14
2+
version=2.0.15
33
author=SparkFun Electronics <[email protected]>
44
maintainer=SparkFun Electronics <sparkfun.com>
55
sentence=Library for I2C and Serial Communication with u-blox GNSS modules<br/><br/>

Diff for: src/SparkFun_u-blox_GNSS_Arduino_Library.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2947,7 +2947,7 @@ sfe_ublox_status_e SFE_UBLOX_GNSS::sendI2cCommand(ubxPacket *outgoingUBX, uint16
29472947
_i2cPort->beginTransmission((uint8_t)_gpsI2Caddress);
29482948

29492949
if (bytesToSend == 1) //Send the single remaining byte if there is one
2950-
_i2cPort->write(outgoingUBX->payload[startSpot], 1); // Thank you @Valrakk #61
2950+
_i2cPort->write(outgoingUBX->payload[startSpot]); // Thank you @Valrakk #61
29512951

29522952
//Write checksum
29532953
_i2cPort->write(outgoingUBX->checksumA);

0 commit comments

Comments
 (0)