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
1.[`ubxsimulator`](#ubxsimulator) utility. This provides a basic simulation of a GNSS receiver serial stream by generating synthetic UBX or NMEA messages based on parameters defined in a json configuration file.
17
20
1.[`ubxsave`](#ubxsave) CLI utility. This saves a complete set of configuration data from any Generation 9+ u-blox device (e.g. NEO-M9N or ZED-F9P) to a file. The file can then be reloaded to any compatible device using the `ubxload` utility.
18
21
1.[`ubxload`](#ubxload) CLI utility. This reads a file containing binary configuration data and loads it into any compatible Generation 9+ u-blox device (e.g. NEO-M9N or ZED-F9P).
22
+
1.[`ubxbase`](#ubxbase) CLI utility. A utility which configures compatible u-blox GNSS receivers (e.g. ZED-F9P) as RTK base stations, using either Fixed or Survey-In timing modes.
19
23
1.[`ubxsetrate`](#ubxsetrate) CLI utility. A simple utility which sets NMEA or UBX message rates on u-blox GNSS receivers.
20
24
1.[`ubxcompare`](#ubxcompare) CLI utility. Utility for comparing two or more u-blox config files in either text (\*.txt) or binary (\*.ubx) format. Output files from the `ubxsave` utility can be used as input files.
21
25
@@ -118,7 +122,7 @@ Command line arguments can be stored in a configuration file and invoked using t
118
122
*GENERATION 9+ DEVICES ONLY (e.g. NEO-M9N or ZED-F9P)*
119
123
120
124
```
121
-
class pyubxutils.ubxconfig.UBXSaver(file, stream, **kwargs)
125
+
class pyubxutils.ubxsave.UBXSaver(file, stream, **kwargs)
122
126
```
123
127
124
128
CLI utility which saves Generation 9+ UBX device configuration data to a file. `ubxsave` polls configuration data via the device's serial port using a series of CFG-VALGET poll messages. It parses the responses to these polls, converts them to CFG-VALSET command messages and saves these to a binary file. This binary file can then be loaded into any compatible UBX device (e.g. via the `ubxload` utility) to restore the saved configuration.
@@ -145,7 +149,7 @@ ubxsave -h
145
149
*GENERATION 9+ DEVICES ONLY (e.g. NEO-M9N or ZED-F9P)*
146
150
147
151
```
148
-
class pyubxutils.ubxconfig.UBXLoader(file, stream, **kwargs)
152
+
class pyubxutils.ubxload.UBXLoader(file, stream, **kwargs)
149
153
```
150
154
151
155
CLI utility which loads UBX configuration (CFG-VALSET) data from a binary file (e.g. one created by the `ubxsave` utility) and loads it into the volatile memory (RAM) of a compatible Generation 9+ UBX device via its serial port. It then awaits acknowledgements to this data and reports any errors.
@@ -162,11 +166,34 @@ For help and full list of optional arguments, type:
162
166
ubxload -h
163
167
```
164
168
169
+
---
170
+
## <aname="ubxbase">ubxbase CLI</a>
171
+
172
+
*RTK-COMPATIBLE GENERATION 9+ DEVICES ONLY (e.g. ZED-F9P)*
173
+
174
+
```
175
+
class pyubxutils.ubxbase.UBXBase(file, stream, **kwargs)
176
+
```
177
+
178
+
CLI utility which configures a compatible u-blox receiver to RTK base station mode, using either Fixed or Survey-In timing modes.
0 commit comments