| Crates.io | ubx2cggtts |
| lib.rs | ubx2cggtts |
| version | 0.0.1-alpha |
| created_at | 2024-12-29 18:44:39.599906+00 |
| updated_at | 2024-12-29 18:44:39.599906+00 |
| description | CGGTTS collection from UBlox GNSS receiver |
| homepage | https://github.com/ublox-rs/ubx2cggtts |
| repository | https://github.com/ublox-rs/ubx2cggtts |
| max_upload_size | |
| id | 1498384 |
| size | 68,525 |
ubx2cggtts is a simple command line tool
to connect to a U-Blox GNSS receiver and collect CGGTTS files.
Refer to this page for more information about CGGTTS.
Install by Cargo:
cargo install ubx2cggtts
Or, build it from sources:
cargo build -r
Although not available yet, this tool will eventually have
a no-std option for easy cross-compilation and embedding even on tiny systems.
A few basic options exist to connect your Ublox:
--port,-p to specify the serial port name--baud,-b to specify the baud rate (default: 9600).
You need to select the one that was configured in your Ublox-deviceRefer to ubx2cggtts --help for more information.
By default, this tool uses the BIPM scheduling table.
Deploy with basic setup:
ubx2cggtts -p /dev/ttyUSB0
You can use ubx2cggtts to reconfigure your Ublox. For example
to increate the selected baud-rate. To do so, use the configure keyword,
which accepts several options, most of the serial port options exist here for example.
For example, let's say your device is currently configured for 9600 B/s.
Deploy ubx2cggtts -b 9600 to program correctly, and use configure -b 115200
to program a new baud rate:
ubx2cggtts -p /dev/ttyUSB0 -b 9600 configure -b 115200
# Connecting with previous parameters now fails
ubx2cggtts -p /dev/ttyUSB0 -b 9600
# Augment to new baud rate
ubx2cggtts -p /dev/ttyUSB0 -b 115200