10 releases
0.3.0 | Jul 13, 2024 |
---|---|
0.2.8 | Jul 11, 2024 |
0.2.5 | Apr 16, 2024 |
0.2.2 | Feb 17, 2024 |
0.1.0 | Mar 7, 2020 |
#120 in Embedded development
33 downloads per month
4MB
105K
SLoC
EFM32PG1B Peripheral Access Crate (PAC)
Low-level register mappings for the Silicon Labs EFM32PG1B family of ARM Cortex-M4 microcontrollers, written in Rust. The code is generated automatically from a vendor-supplied SVD file, using svd2rust v0.33.0:
svd2rust -i EFM32PG1B.svd -c svd2rust.toml
rm -rf src
form -i lib.rs -o src/ && rm lib.rs
cargo fmt
The purpose of this crate is to give embedded programs or libraries written Rust access to the complete functionality of EFM32PG1B MCUs.
The SVD file used is based on all the files in the EFM32PG1B CMSIS-Pack. The only differences between them are the <name>
, <description>
and <flashSize>
field values. Here are the flash sizes for each MCU:
EFM32PG1B | flashSize |
---|---|
100F128GM32 |
0x20000 |
100F128IM32 |
0x20000 |
100F256GM32 |
0x40000 |
100F256IM32 |
0x40000 |
200F128GM32 |
0x20000 |
200F128GM48 |
0x20000 |
200F128IM32 |
0x20000 |
200F256GM32 |
0x40000 |
200F256GM48 |
0x40000 |
200F256IM32 |
0x40000 |
200F256IM48 |
0x40000 |
The flashSize
value used in the source EFM32PG1B.svd
file was set to the lowest value (0x20000
).
The ASYNC
(Asynchronous Reflex) field for all Channel Control Registers of the Clock Management Unit has been renamed to ASYNCREFL
because svd2rust
converted it to async
, which is a rust keyword, and caused compilation errors.
Documentation
SVD files are available in the EFM32PG1B CMSIS-Pack.
Additional vendor supplied documents:
License
Licensed under either of
-
Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
-
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~0.6–1.2MB
~17K SLoC