#svd #avr #svd2rust #safe-abstraction #atdf

app atdf2svd

Tool to convert Atmel's ATDF files to SVD

8 releases

0.3.3 Oct 23, 2022
0.3.2 Sep 20, 2022
0.3.1 Aug 1, 2021
0.3.0 Mar 18, 2021
0.1.2 Mar 18, 2020

#552 in Embedded development

GPL-3.0-only

43KB
1K SLoC

atdf2svd crates.io page

A converter tool that converts Atmel's atdf files into svd. The primary usecase for this is to then use the svd files with svd2rust to create safe abstractions for register access.

Usage

USAGE:
    atdf2svd <atdf_path> [svd_path]

Installation

Install atdf2svd using

$ cargo install -f atdf2svd

Notes

Automatic Changes

There are two "post-processors" running after the conversion (patch.rs):

  • signals_to_port_fields: Patches the registers for all PORTx peripherals to contain fields for each existing pin. Pin IDs are taken from the <signals /> tag of the port instance.
  • remove_unsafe_cpu_regs: Removes the SREG(Status Register) and SP(Stack Pointer) registers as they should not be safely accessible.

Manual Changes

Unfortunately, the provided atdf files are often not completely correct or contain undescriptive names. One big issue is that enumerated values are often just named VAL_0xXX. I recommend patching the generated svd files using the patch tool written by the stm32-rs project.

License

atdf2svd is licensed under the GPL v3 license. See LICENSE or https://www.gnu.org/licenses/gpl-3.0.en.html for more info.

Dependencies

~5–15MB
~166K SLoC