va108xx/README.md

39 lines
1.3 KiB
Markdown
Raw Normal View History

2021-11-06 01:37:29 +01:00
[![Crates.io](https://img.shields.io/crates/v/va108xx)](https://crates.io/crates/va108xx)
2021-12-03 20:39:53 +01:00
[![build](https://github.com/us-irs/va108xx-rs/actions/workflows/ci.yml/badge.svg)](https://github.com/us-irs/va108xx-rs/actions/workflows/ci.yml)
2021-11-02 10:41:22 +01:00
[![docs.rs](https://img.shields.io/docsrs/va108xx)](https://docs.rs/va108xx)
2021-11-01 23:41:06 +01:00
# PAC for the Vorago VA108xx microcontroller family
2021-11-02 00:07:57 +01:00
This repository contains the Peripheral Access Crate (PAC) for
2021-11-01 23:41:06 +01:00
Voragos VA108xx series of Cortex-M0 based microcontrollers.
2021-11-01 23:55:24 +01:00
The crate was generated using [`svd2rust`](https://github.com/rust-embedded/svd2rust).
## Usage
To use this crate, add this to your `Cargo.toml`
```toml
[dependencies.va108xx]
2021-12-03 15:06:49 +01:00
version = "<Most Recent Version>"
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](https://docs.rs/svd2rust/0.19.0/svd2rust/#peripheral-api).
## 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](https://github.com/stm32-rs/svdtools):
```sh
cd svd
svd patch va108xx-patch.yml
```
After that, you can regenerate the PAC by running the `gen-helper.sh` helper script.