Additional comment re #30

This commit is contained in:
PaulZC
2021-05-08 05:57:54 +01:00
parent f081f75c66
commit 36f696fa57
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3394,7 +3394,7 @@ void SFE_UBLOX_GNSS::checkCallbacks(void)
// Push (e.g.) RTCM data directly to the module // Push (e.g.) RTCM data directly to the module
// Returns true if all numDataBytes were pushed successfully // Returns true if all numDataBytes were pushed successfully
// 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. // 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.
// Default to using a restart between transmissions. Set stop to true to use a stop instead. // 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.
// On processors like the ESP32, you can use setI2CTransactionSize to increase the size of each transmission - to e.g. 128 bytes // On processors like the ESP32, you can use setI2CTransactionSize to increase the size of each transmission - to e.g. 128 bytes
boolean SFE_UBLOX_GNSS::pushRawData(uint8_t *dataBytes, size_t numDataBytes, boolean stop) boolean SFE_UBLOX_GNSS::pushRawData(uint8_t *dataBytes, size_t numDataBytes, boolean stop)
{ {
+1 -1
View File
@@ -641,7 +641,7 @@ public:
// Push (e.g.) RTCM data directly to the module // Push (e.g.) RTCM data directly to the module
// 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. // 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.
// Default to using a restart between transmissions. Set stop to true to use a stop instead. // 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.
boolean pushRawData(uint8_t *dataBytes, size_t numDataBytes, boolean stop = false); boolean pushRawData(uint8_t *dataBytes, size_t numDataBytes, boolean stop = false);
// Support for data logging // Support for data logging