Crates.io | atsam3x |
lib.rs | atsam3x |
version | 0.1.0 |
source | src |
created_at | 2022-09-23 11:27:32.074759 |
updated_at | 2022-09-23 11:27:32.074759 |
description | Device support crates for ATSAM3X devices |
homepage | |
repository | https://github.com/emcrates-rs/atsam-PAC-rs |
max_upload_size | |
id | 672419 |
size | 32,285,340 |
This crate provides an autogenerated API for access to ATSAM3X 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.atsam3x]
version = "0.1.0"
features = ["atsam3x4c"]
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 atsam3x::atsam3x4c;
let mut peripherals = atsam3x4c::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.25.0/svd2rust/#peripheral-api
Module | Devices | Links |
---|---|---|
atsam3x4c | ATSAM3X4CA-CU, ATSAM3X4CA-AUR, ATSAM3X4CA-AU | Datasheet, microchip.com |
atsam3x4e | ATSAM3X4EA-CU, ATSAM3X4EA-AU | Datasheet, microchip.com |
atsam3x8c | ATSAM3X8CA-CU, ATSAM3X8CA-AU | Datasheet, microchip.com |
atsam3x8e | ATSAM3X8EA-CU, ATSAM3X8EA-AU | Datasheet, microchip.com |