Skip to content

Commit 36f696f

Browse files
committed
Additional comment re #30
1 parent f081f75 commit 36f696f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/SparkFun_u-blox_GNSS_Arduino_Library.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3394,7 +3394,7 @@ void SFE_UBLOX_GNSS::checkCallbacks(void)
33943394
// Push (e.g.) RTCM data directly to the module
33953395
// Returns true if all numDataBytes were pushed successfully
33963396
// Warning: this function does not check that the data is valid. It is the user's responsibility to ensure the data is valid before pushing.
3397-
// Default to using a restart between transmissions. Set stop to true to use a stop instead.
3397+
// Default to using a restart between transmissions. But processors like ESP32 seem to need a stop (#30). Set stop to true to use a stop instead.
33983398
// On processors like the ESP32, you can use setI2CTransactionSize to increase the size of each transmission - to e.g. 128 bytes
33993399
boolean SFE_UBLOX_GNSS::pushRawData(uint8_t *dataBytes, size_t numDataBytes, boolean stop)
34003400
{

Diff for: src/SparkFun_u-blox_GNSS_Arduino_Library.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ class SFE_UBLOX_GNSS
641641

642642
// Push (e.g.) RTCM data directly to the module
643643
// Warning: this function does not check that the data is valid. It is the user's responsibility to ensure the data is valid before pushing.
644-
// Default to using a restart between transmissions. Set stop to true to use a stop instead.
644+
// Default to using a restart between transmissions. But processors like ESP32 seem to need a stop (#30). Set stop to true to use a stop instead.
645645
boolean pushRawData(uint8_t *dataBytes, size_t numDataBytes, boolean stop = false);
646646

647647
// Support for data logging

0 commit comments

Comments
 (0)