Crates.io | lora-e5-bsp |
lib.rs | lora-e5-bsp |
version | 0.6.1 |
source | src |
created_at | 2021-11-11 19:44:53.564496 |
updated_at | 2022-08-01 21:04:06.917349 |
description | Board support package for the seeed LoRa-E5 development kit |
homepage | |
repository | https://github.com/stm32-rs/stm32wlxx-hal |
max_upload_size | |
id | 480347 |
size | 16,019 |
Board support for the seeed LoRa-E5 development kit.
This crate extends the stm32wlxx-hal with board specific hardware, see that crate for more information.
[dependencies.lora-e5-bsp]
version = "0.6.1"
features = [
# optional: use the cortex-m-rt interrupt interface
"rt",
# optional: use defmt
"defmt",
# optional: enable conversions with embedded-time types
"embedded-time",
# optional: use the real time clock (RTC)
"chrono",
]
This board is a pain to get working for the first time because the flash protection bits are set.
Check these resources to unlock the board for programming:
To flash this board with various rust utilities such as probe-run
, cargo-embed
, and cargo-flash
remove the --connected-under-reset
flag. This flag is required for the NUCLEO board, but will cause timeout errors with the LoRa-E5 development board.
⚠️ You must use recent versions of probe-rs
based tools to avoid bugs with the STM32WL ⚠️
cargo-embed
>=0.12.0cargo-flash
>=0.12.0probe-run
>=0.3.1