Crates.io | stm32g4xx-hal |
lib.rs | stm32g4xx-hal |
version | 0.0.1 |
source | src |
created_at | 2019-05-31 03:45:33.560078 |
updated_at | 2023-04-18 15:42:24.745356 |
description | Peripheral access API for STM32G4 series microcontrollers |
homepage | |
repository | https://github.com/stm32-rs/stm32g4xx-hal |
max_upload_size | |
id | 138076 |
size | 584,640 |
stm32g4xx-hal
🚧 Work in progress
stm32g4xx-hal contains a multi device hardware abstraction on top of the peripheral access API for the STMicro STM32G4 series microcontrollers. The selection of the MCU is done by feature gates, typically specified by board support crates.
This crate will eventually contain support for multiple microcontrollers in the
stm32g4 family. Which specific microcontroller you want to build for has to be
specified with a feature, for example stm32g431
.
Currently supported configurations are:
If you are compiling the crate on its own for development or running examples, specify your microcontroller on the command line. For example:
cargo build --example blinky --features stm32g473
Examples can be built and run using cargo run
. It is necessary to provide any
required features followed by the name of the chip.
cargo run --example usb_serial --features stm32g473 --features usb_fs --release -- --chip STM32G473RETx
A list of chips supported by probe-rs can be found by running
probe-run --list-chips
For furher information, see the documentation for probe-run.
When using this crate as a dependency in your project, the microcontroller can
be specified as part of the Cargo.toml
definition.
[dependencies]
stm32g4xx-hal = "0.0.0"
The documentation can be found at docs.rs.
Licensed under either of
at your option.
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.