-
- Downloads
Merge branch 'feature/embedded-hal-1.0' into 'main'
Update to embedded-hal 1.0 See merge request silicon-economy/libraries/serum/quectel-bg77!9
Showing
- .gitlab-ci.yml 17 additions, 5 deletions.gitlab-ci.yml
- CHANGELOG.md 11 additions, 0 deletionsCHANGELOG.md
- Cargo.toml 8 additions, 4 deletionsCargo.toml
- README.md 12 additions, 10 deletionsREADME.md
- shell.nix 8 additions, 8 deletionsshell.nix
- src/atst_commands.rs 32 additions, 20 deletionssrc/atst_commands.rs
- src/atst_flows.rs 20 additions, 19 deletionssrc/atst_flows.rs
- src/lib.rs 268 additions, 183 deletionssrc/lib.rs
[package] | ||
name = "quectel-bg77" | ||
description = "Driver for Quectel's BG77 and BG770 eMTC and NB-IoT Modems" | ||
version = "0.2.3" | ||
version = "0.3.0" | ||
authors = [ "Fraunhofer IML Embedded Rust Group <embedded-rust@iml.fraunhofer.de>" ] | ||
repository = "https://git.openlogisticsfoundation.org/silicon-economy/libraries/serum/quectel-bg77" | ||
edition = "2018" | ||
license = "OLFL-1.3" | ||
keywords = ["bg77", "quectel", "no_std"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
resolver = "2" | ||
[package.metadata.docs.rs] | ||
features = ["bg77"] | ||
... | ... | @@ -23,7 +24,9 @@ motion2se = ["bg770"] |
direct-serial-access = [] | ||
[dependencies] | ||
embedded-hal = "0.2.4" | ||
embedded-hal = "1" | ||
embedded-hal-nb = "1" | ||
embedded-timers = "0.4.0" | ||
heapless = "0.7.3" | ||
log = "0.4.14" | ||
nb = "1.0.0" | ||
... | ... | @@ -36,11 +39,12 @@ void = { version = "1.0.2", default-features = false } |
inverted-pin = "0.2.0" | ||
# dependencies for tests and doc tests (exclude from examples) | ||
[target.'cfg(any(windows, unix))'.dev-dependencies] | ||
[target.'cfg(not(target_os="none"))'.dev-dependencies] | ||
embedded-hal-mock = "0.8" | ||
embedded-timers = { version = "0.4.0", features = ["std"]} | ||
# dev-dependencies for running the examples on an stm32l4x2 MCU (exclude from tests) | ||
[target.'cfg(not(any(windows, unix)))'.dev-dependencies] | ||
[target.thumbv7em-none-eabihf.dev-dependencies] | ||
stm32l4xx-hal = { git = "https://github.com/stm32-rs/stm32l4xx-hal", rev = "bf2ded1fcabe782168d132500d95f9bd1acf48c1", features = ["stm32l452", "rt"] } | ||
cortex-m = "0.7.2" | ||
cortex-m-rt = "0.6.13" | ||
... | ... |
This diff is collapsed.
Please register or sign in to comment