2 releases
0.1.1 | May 3, 2021 |
---|---|
0.1.0 | Mar 8, 2021 |
#1595 in Embedded development
335KB
6.5K
SLoC
ublox-short-range
no_std driver crate for interfacing with the ublox short range family over serial
A driver crate for AT-command based serial ublox short range modules, built on top of atat. The driver aims to be compatible with the ublox short range modules:
- odin_w2xx
- nina_w1xx
- nina_b1xx
- anna_b1xx
- nina_b2xx
- nina_b3xx
Documentation
Design diagram:
Relevant docs:
- https://www.u-blox.com/en/docs/UBX-14044127
- https://www.u-blox.com/en/docs/UBX-14044126
- https://www.u-blox.com/en/docs/UBX-16024251
Relevant repos:
- https://github.com/u-blox/u-connectXpress-host-library
- https://github.com/particle-iot/device-os
- https://github.com/u-blox/ubxlib
Tests
The crate is covered by tests. These tests can be run by
cargo test --tests --all-features
, and are run by the CI on every push.
Features
- device selection (must select one, and only one!):
odin_w2xx
nina_w1xx
nina_b1xx
anna_b1xx
nina_b2xx
nina_b3xx
socket-tcp
: Enabled by default. Adds TCP socket capabilities, and implements [TcpStack
] trait.socket-udp
: Enabled by default. Adds UDP socket capabilities, and implements [UdpStack
] trait.defmt-default
: Disabled by default. Add log statements on trace (dev) or info (release) log levels to aid debugging.defmt-trace
: Disabled by default. Add log statements on trace log levels to aid debugging.defmt-debug
: Disabled by default. Add log statements on debug log levels to aid debugging.defmt-info
: Disabled by default. Add log statements on info log levels to aid debugging.defmt-warn
: Disabled by default. Add log statements on warn log levels to aid debugging.defmt-error
: Disabled by default. Add log statements on error log levels to aid debugging.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~1.7–2.4MB
~51K SLoC