You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/u-blox_GNSS.h
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -262,10 +262,14 @@ class DevUBLOXGNSS
262
262
// Push (e.g.) RTCM or Assist Now data directly to the module
263
263
// 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.
264
264
//
265
-
// For SPI: callProcessSpiBuffer defaults to true and forces pushRawData to call processSpiBuffer in between push transactions.
265
+
// For SPI: callProcessBuffer defaults to true and forces pushRawData to call processSpiBuffer in between push transactions.
266
266
// This is to try and prevent incoming data being 'lost' during large (bi-directional) pushes.
267
-
// If you are only pushing limited amounts of data and/or will be calling checkUblox manually, it might be advantageous to set callProcessSpiBuffer to false.
// If you are only pushing limited amounts of data and/or will be calling checkUblox manually, it might be advantageous to set callProcessBuffer to false.
268
+
//
269
+
// Likewise for Serial: callProcessBuffer defaults to true and forces pushRawData to call checkUbloxSerial in between pushing data.
270
+
// This is to try and prevent incoming data being 'lost' (overflowing the serial RX buffer) during a large push.
271
+
// If you are only pushing limited amounts of data and/or will be calling checkUblox manually, it might be advantageous to set callProcessBuffer to false.
0 commit comments