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
{{ message }}
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
enum dynModel // Possible values for the dynamic platform model, which provide more accuract position output for the situation. Description extracted from ZED-F9P Integration Manual
417
390
{
@@ -485,6 +458,13 @@ class SFE_UBLOX_GPS
485
458
//serialPort needs to be perviously initialized to correct baud rate
486
459
boolean begin(Stream &serialPort); //Returns true if module is detected
487
460
461
+
//Control the size of the internal I2C transaction amount
462
+
voidsetI2CTransactionSize(uint8_t bufferSize);
463
+
uint8_tgetI2CTransactionSize(void);
464
+
465
+
//Set the max number of bytes set in a given I2C transaction
466
+
uint8_t i2cTransactionSize = 32; //Default to ATmega328 limit
467
+
488
468
//Returns true if device answers on _gpsI2Caddress address or via Serial
489
469
//maxWait is only used for Serial
490
470
boolean isConnected(uint16_t maxWait = 1100);
@@ -632,11 +612,11 @@ class SFE_UBLOX_GPS
632
612
633
613
boolean getRELPOSNED(uint16_t maxWait = 1100); //Get Relative Positioning Information of the NED frame
634
614
635
-
voidenableDebugging(Stream &debugPort = Serial, boolean printLimitedDebug = false); //Given a port to print to, enable debug messages. Default to all, not limited.
636
-
voiddisableDebugging(void); //Turn off debug statements
constchar *statusString(sfe_ublox_status_e stat); //Pretty print the return value
615
+
voidenableDebugging(Stream &debugPort = Serial, boolean printLimitedDebug = false); //Given a port to print to, enable debug messages. Default to all, not limited.
616
+
voiddisableDebugging(void); //Turn off debug statements
0 commit comments