#hal #arm #cortex-m #hardware-abstraction #stm32g4xx

no-std stm32g4xx-hal

Peripheral access API for STM32G4 series microcontrollers

2 releases

0.0.1 Apr 18, 2023
0.0.0 May 31, 2019

#30 in #hardware-abstraction

Download history 9/week @ 2023-12-11 1/week @ 2023-12-25 11/week @ 2024-01-01 33/week @ 2024-01-29 10/week @ 2024-02-12 22/week @ 2024-02-19 44/week @ 2024-02-26 54/week @ 2024-03-04 42/week @ 2024-03-11 5/week @ 2024-03-18 46/week @ 2024-03-25

148 downloads per month

MIT/Apache

500KB
12K SLoC

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.

Usage

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:

  • stm32g431
  • stm32g441
  • stm32g491
  • stm32g473
  • stm32g483
  • stm32g474
  • stm32g484

Building an Example

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

Running examples

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.

Using as a Dependency

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"

Documentation

The documentation can be found at docs.rs.

License

Licensed under either of

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

~49MB
~1.5M SLoC