Skip to content

Commit c565523

Browse files
committed
Fix compiler warning
1 parent 3f0e6f2 commit c565523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SparkFun_u-blox_SARA-R5_Arduino_Library.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ class SARA_R5 : public Print
814814
uint8_t _currentInitDepth = 0;
815815

816816
#define _RXBuffSize 2056
817-
const int _rxWindowMillis = 2; // 1ms is not quite long enough for a single char at 9600 baud. millis roll over much less often than micros.
817+
const unsigned long _rxWindowMillis = 2; // 1ms is not quite long enough for a single char at 9600 baud. millis roll over much less often than micros.
818818
char _saraRXBuffer[_RXBuffSize];
819819
char _pruneBuffer[_RXBuffSize];
820820
char _saraResponseBacklog[_RXBuffSize];

0 commit comments

Comments
 (0)