Orolia2s/ublox_parser
Use a serial port to receive and decode u-blox messages
master
master
master
Add the dependency in your build.zig.zon
by running the following command:
zig fetch --save git+https://github.com/Orolia2s/ublox_parser#master
Then, in your build.zig
:
const ublox = b.dependency("ublox_parser", .{ .target = target, .optimize = optimize }).artifact("ublox_parser");
// wherever needed:
exe.linkLibrary(ublox);
requires zig >= 0.14.0
zig build
zig build test
$ zig build run -- --help
Usage: ublox_parser [OPTION...] [PATH]
Prints serial port configuration and ublox messages.
-f, --file Input is not a serial port but a file. Defaults to
false
-p, --passive Do not change the port configuration, only display
it. Defaults to false
-?, --help Give this help list
--usage Give a short usage message
-V, --version Print program version
Report bugs to <[email protected]>.
zig build doc
open doc/html/index.html