3 unstable releases

0.2.0 Jun 25, 2024
0.1.1 Dec 10, 2021
0.1.0 Dec 10, 2021

#264 in Embedded development

Download history 91/week @ 2024-06-20 90/week @ 2024-06-27 33/week @ 2024-07-04 14/week @ 2024-07-11 15/week @ 2024-07-18 32/week @ 2024-07-25 5/week @ 2024-08-01 17/week @ 2024-09-05 210/week @ 2024-09-12 173/week @ 2024-09-19 86/week @ 2024-09-26

486 downloads per month
Used in 2 crates (via va416xx-hal)

Apache-2.0

2MB
40K SLoC

Crates.io docs.rs

PAC for the Vorago VA416xx microcontroller family

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

The crate was generated using svd2rust.

Usage

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

[dependencies.va416xx]
version = "<MostRecentVersion>"
features = ["rt"]

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

For full details on the autgenerated API, you can read the svd2rust documentation.

Regenerating the PAC

If you want to re-generate the PAC, for example if the register file va416xx.svd changes or the svd2rust version is updated, you can do some using the following these steps:

  1. Make sure all necessary tools are installed: svd2rust, svdtools and form. You can install all tools with cargo:

    cargo install --locked svd2rust svdtools form
    
  2. Patch the vendor-provided SVD file svd/va41xx.svd. This can be done using svdtools in conjunction with the svd/va416xx-patch.yml file.

    svdtools patch svd/va416xx-patch.yml
    
  3. Use svd2rust to generate the Rust library

    svd2rust -i svd/va416xx.svd.patched
    
  4. Use the form tool to split the generated lib.rs into individual modules.

    form -i lib.rs -o src/
    

The gen-helper.sh automates steps 2-4.

Dependencies

~0.6–0.8MB
~11K SLoC