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: Adding_New_Messages.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -129,21 +129,23 @@ See [this commit](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Libra
129
129
130
130
See [this commit](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library/commit/b746d8e2742961ede95e2d06d5db3a3a557e571d) for the changes.
131
131
132
-
#### Step 6.3: Update processUBXpacket()
132
+
#### Step 6.3: Update getMaxPayloadSize()
133
+
134
+
#### Step 6.4: Update processUBXpacket()
133
135
134
136
Take time to double-check that you have used the correct data width, signed/unsigned and position for each field.
135
137
136
138
See [this commit](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library/commit/8eecdd5044f810b0e2b567150ff63a17c219fe8e) for the changes.
137
139
138
-
#### Step 6.4: Update checkCallbacks()
140
+
#### Step 6.5: Update checkCallbacks()
139
141
140
142
See [this commit](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library/commit/b53bffaa3ae12482cfb268f23796963d0b8519c9) for the changes.
141
143
142
-
#### Step 6.5: Add the "auto" functions
144
+
#### Step 6.6: Add the "auto" functions
143
145
144
146
See [this commit](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library/commit/e394ae003ad38117d150598774d0552059416473) for the changes.
145
147
146
-
#### Step 6.6: Add the helper functions (if any)
148
+
#### Step 6.7: Add the helper functions (if any)
147
149
148
150
See [this commit](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library/commit/318e76383e96d6676bbb57294c25e665c0d4a31f) for the changes.
Copy file name to clipboardExpand all lines: README.md
+6-2
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,13 @@ u-blox makes some incredible GNSS receivers covering everything from low-cost, h
21
21
22
22
This library can be installed via the Arduino Library manager. Search for **SparkFun u-blox GNSS**.
23
23
24
-
## Automatic support for correction services like RTK2go, Emlid Caster and Skylark (Swift Navigation)
24
+
## Automatic support for correction services like PointPerfect (u-blox), RTK2go, Emlid Caster and Skylark (Swift Navigation)
25
25
26
-
RTK NTRIP corrections services often require you to send them your location in NMEA GPGGA format. v2.2 of the library makes this easy by providing get functions and automatic callbacks
26
+
u-blox's PointPerfect GNSS augmentation service uses the secure MQTT protocol to download SPARTN format correction data, providing "3-6 cm accuracy and convergence within seconds". Please see the new [PointPerfect Client example](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library/tree/main/examples/ZED-F9P/Example18_PointPerfectClient) for more details.
27
+
28
+
v2.3 also supports L-band correction services using the new u-blox NEO-D9S correction data receiver. Please see the new [L-band Corrections example](https://github.com/sparkfun/SparkFun_u-blox_GNSS_Arduino_Library/tree/main/examples/ZED-F9P/Example19_LBand_Corrections_with_NEO-D9S) for more details.
29
+
30
+
Other RTK NTRIP corrections services often require you to send them your location in NMEA GPGGA format. v2.2 of the library makes this easy by providing get functions and automatic callbacks
27
31
for both GPGGA and GNGGA messages. You can now instruct your module to output GPGGA (e.g.) every 10 seconds and then push it to the correction server directly from the callback. No more polling, no more parsing!
28
32
29
33
v2.2 also includes two new functions useful for correction services:
Copy file name to clipboardExpand all lines: examples/AssistNow/AssistNow_Autonomous/Example2_AssistNowAutonomous_DatabaseRead/Example2_AssistNowAutonomous_DatabaseRead.ino
+9-9
Original file line number
Diff line number
Diff line change
@@ -35,22 +35,22 @@ SFE_UBLOX_GNSS myGNSS;
35
35
// | / _____ You can use any name you like for the struct
0 commit comments