| Crates.io | pac22 |
| lib.rs | pac22 |
| version | 0.1.2 |
| created_at | 2025-01-01 05:39:47.517109+00 |
| updated_at | 2025-01-01 05:39:47.517109+00 |
| description | Device support crates for PAC22 devices |
| homepage | |
| repository | https://github.com/pac-rs/pac-rs |
| max_upload_size | |
| id | 1500613 |
| size | 1,499,171 |
This crate provides an autogenerated API for access to PAC22 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.pac22]
version = "0.1.2"
features = ["pac22140"]
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 pac22::pac22140;
let mut peripherals = pac22140::Peripherals::take().unwrap();
let gpioa = &peripherals.GPIOA;
gpioa.out.modify(|_, w| unsafe { w.bits(0x1) });
For full details on the autogenerated API, please see: https://docs.rs/svd2rust/0.30.1/svd2rust/#peripheral-api
| Module | Devices | Links |
|---|---|---|
| pac22xxx | pac22140 | da008531, qorvo.com |