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
// It does the same job as ::poll but also processed any 'old' data stored in the backlog first
603
+
// It does the same job as ::poll but also processes any 'old' data stored in the backlog first
604
604
// It also has a built-in timeout - which ::poll does not
605
-
// Use this - it is way better than ::poll. Thank you Natthew!
605
+
// Use this - it is way better than ::poll. Thank you Matthew!
606
606
boolbufferedPoll(void);
607
607
608
608
// This is the original poll function.
@@ -963,7 +963,7 @@ class SARA_R5 : public Print
963
963
bool _pollReentrant = false; // Prevent reentry of poll - just in case it gets called from a callback
964
964
965
965
#define_RXBuffSize2056
966
-
constunsignedlong _rxWindowMillis = 2; // 1ms is not quite long enough for a single char at 9600 baud. millis roll over much less often than micros.
966
+
constunsignedlong _rxWindowMillis = 2; // 1ms is not quite long enough for a single char at 9600 baud. millis roll over much less often than micros. See notes in .cpp re. ESP32!
967
967
char *_saraRXBuffer; // Allocated in SARA_R5::begin
0 commit comments