Peripheral access crate (PAC) for the Vorago VA108xx family of MCUs
Go to file
Robin Müller 02725c9aa2
Rust/va108xx-rs/pipeline/head This commit looks good Details
v0.2.1: updated homepage and repostory
2021-12-03 15:04:20 +01:00
.github cross-compile now in CI 2021-11-08 23:52:41 +01:00
automation EGit integration 2021-11-23 10:34:25 +01:00
src I2C update 2021-11-23 01:42:22 +01:00
svd I2C update 2021-11-23 01:42:22 +01:00
.gitignore Added gitignore file 2021-11-04 22:37:48 +01:00
CHANGELOG.md v0.2.0: Relicensed and republished 2021-12-03 14:28:37 +01:00
Cargo.toml v0.2.1: updated homepage and repostory 2021-12-03 15:04:20 +01:00
LICENSE-APACHE switched license to dual MIT or Apache 2.0 2021-11-02 20:47:04 +01:00
NOTICE NOTICE Draft 2021-11-26 18:00:10 +01:00
README.md update README 2021-11-09 18:21:22 +01:00
build.rs First building PAC version 2021-11-01 23:31:51 +01:00
device.x added files generated from working (but faulty) SVD file 2021-10-29 09:49:48 +02:00
gen-helper.sh Updated SVD file handling and README 2021-11-04 22:39:53 +01:00

README.md

Crates.io build docs.rs

PAC for the Vorago VA108xx microcontroller family

This repository contains the Peripheral Access Crate (PAC) for Voragos VA108xx series of Cortex-M0 based microcontrollers.

The crate was generated using svd2rust.

Usage

To use this crate, add this to your Cargo.toml

[dependencies.va108xx]
version = "0.1"
features = ["rt"]

The rt feature is optional and recommended. It brings in support for cortex-m-rt.

For full details on the autgenerated API, please see the svd2rust documentation.

Regenerating the PAC

The base file used by svd2rust is generated using the svdtools package and a YAML patch file. You can create the patched file by running this command after installing the Python svdtools package:

cd svd
svd patch va108xx-patch.yml

After that, you can regenerate the PAC by running the gen-helper.sh helper script.