#api-access

no-std mimxrt685s-pac

Peripheral Access Crate for MIMXRT685s devices

6 releases

0.1.5 Oct 2, 2024
0.1.4 Jul 31, 2024

#238 in Embedded development

Download history 175/week @ 2024-07-04 328/week @ 2024-07-11 94/week @ 2024-07-18 381/week @ 2024-07-25 269/week @ 2024-08-01 179/week @ 2024-08-08 18/week @ 2024-08-15 74/week @ 2024-08-22 145/week @ 2024-08-29 243/week @ 2024-09-05 205/week @ 2024-09-12 90/week @ 2024-09-19 318/week @ 2024-09-26 311/week @ 2024-10-03 262/week @ 2024-10-10 458/week @ 2024-10-17

1,392 downloads per month

MIT license

17MB
474K SLoC

MIMXRT685s Peripheral Access Crate

This crate provides an autogenerated API for access to MIMXRT685s peripherals. The API is generated using svd2rust.

Regenerating the PAC

On a unix-style OS, all you need are these commands:

$ svd2rust.exe -i svd/MIMXRT685S_cm33.svd --reexport-interrupt --ignore-groups --impl-defmt defmt --impl-debug --impl-debug-feature debug
$ rm -r src/*
$ form -i lib.rs -o src
$ rm lib.rs
$ cargo fmt
$ cd src

On windows you need to replace the / with \ and additionally run dos2unix to convert the line endings, like so:

$ svd2rust.exe -i svd\MIMXRT685S_cm33.svd --reexport-interrupt --ignore-groups --impl-defmt defmt --impl-debug --impl-debug-feature debug
$ rm -r src\*
$ form -i lib.rs -o src
$ rm lib.rs
$ cargo fmt
$ cd src
$ dos2unix **\*.rs *.rs

Dependencies