Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extend basic_cli example with more cmd line arguments #71

Merged
merged 3 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ublox for Rust
uBlox for Rust
==============

[![Rust](https://github.com/ublox-rs/ublox/actions/workflows/rust.yml/badge.svg)](https://github.com/ublox-rs/ublox/actions/workflows/rust.yml)
Expand All @@ -13,9 +13,9 @@ ublox for Rust
[mrvs-url]: https://www.whatrustisit.com
[mrvs-badge]: https://img.shields.io/badge/minimum%20rustc-1.65-blue?logo=rust

This project aims to build a pure-rust I/O library for ublox GPS devices, specifically using the UBX protocol.
This project aims to build a pure-rust I/O library for uBlox GPS devices, specifically using the UBX protocol.

Examples of usage of the library can be found in the [examples/](./examples) directory. A basic CLI for interacting with an uBlox device can be found in [examples/basic_cli](./examples/basic_cli/) directory. See the specific [examples/README](./examples/README.md).
Examples of usage of the library can be found in the [examples/](./examples) directory. A basic CLI for interacting with an uBlox device can be found in [examples/ublox-cli](./examples/ublox-cli/) directory. See the specific [examples/README](./examples/README.md).

Constructing Packets
====================
Expand Down
1 change: 1 addition & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[workspace]
exclude = ["target"]
members = ["*"]
resolver = "2"
239 changes: 0 additions & 239 deletions examples/basic_cli/src/main.rs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Lane Kolbly <lane@rscheme.org>"]
edition = "2018"
name = "ublox_cli"
authors = ["Lane Kolbly <lane@rscheme.org>", "Andrei Gherghescu <andrei.github.book663@passfwd.com>"]
edition = "2021"
name = "ublox-cli"
publish = false
rust-version = "1.70"
version = "0.1.0"
Expand Down
Loading
Loading