Crates.io | stm32f4 |
lib.rs | stm32f4 |
version | 0.15.1 |
source | src |
created_at | 2018-04-10 21:14:17.056035 |
updated_at | 2022-07-04 20:02:01.025365 |
description | Device support crates for STM32F4 devices |
homepage | |
repository | https://github.com/stm32-rs/stm32-rs |
max_upload_size | |
id | 59999 |
size | 49,339,057 |
This crate provides an autogenerated API for access to STM32F4 peripherals. The API is generated using svd2rust with patched svd files containing extensive type-safe support. For more information please see the main repo.
Refer to the documentation for full details.
Each device supported by this crate is behind a feature gate so that you only compile the device(s) you want. To use, in your Cargo.toml:
[dependencies.stm32f4]
version = "0.15.1"
features = ["stm32f401"]
The rt
feature is enabled by default and brings in support for cortex-m-rt
.
To disable, specify default-features = false
in Cargo.toml
.
In your code:
use stm32f4::stm32f401;
let mut peripherals = stm32f401::Peripherals::take().unwrap();
let gpioa = &peripherals.GPIOA;
gpioa.odr.modify(|_, w| w.odr0().set_bit());
For full details on the autogenerated API, please see: https://docs.rs/svd2rust/0.24.1/svd2rust/#peripheral-api
Module | Devices | Links |
---|---|---|
stm32f401 | STM32F401 | RM0368, st.com |
stm32f405 | STM32F405, STM32F415 | RM0090, st.com |
stm32f407 | STM32F407, STM32F417 | RM0090, st.com |
stm32f410 | STM32F410 | RM0401, st.com |
stm32f411 | STM32F411 | RM0383, st.com |
stm32f412 | STM32F412 | RM0402, st.com |
stm32f413 | STM32F413, STM32F423 | RM0430, st.com |
stm32f427 | STM32F427, STM32F437 | RM0090, st.com |
stm32f429 | STM32F429, STM32F439 | RM0090, st.com |
stm32f446 | STM32F446 | RM0390, st.com |
stm32f469 | STM32F469, STM32F479 | RM0386, st.com |