atsam3x 0.1.0

Device support crates for ATSAM3X devices
Documentation

atsam3x

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.

Usage

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

Supported Devices

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