ht32f2xxxx

Crates.ioht32f2xxxx
lib.rsht32f2xxxx
version0.1.0
sourcesrc
created_at2020-05-26 08:02:50.269317
updated_at2020-05-26 08:02:50.269317
descriptionDevice support crates for HT32F2XXXX devices
homepage
repositoryhttps://github.com/ht32-rs/ht32-rs
max_upload_size
id246001
size3,461,170
Henrik Böving (hargoniX)

documentation

README

IS THIS THE CRATE I AM SEARCHING FOR

Note that Holtek has 2 chip naming regulations, one with 4 digits, the other with 5. Crates that are generated for 4 digits ones have a naming scheme like HT32F1yyy, the ones for 5 digits HT32F1xxxx. You should make sure this is the crate you are searching for.

ht32f2xxxx

This crate provides an autogenerated API for access to HT32F2XXXX peripherals. The API is generated using svd2rust with patched svd files containing extensive type-safe support. For more information please see the main repo.

Refer to the documentation for full details.

Usage

Each device supported by this crate is behind a feature gate so that you only compile the device(s) you want. To use, in your Cargo.toml:

[dependencies.ht32f2xxxx]
version = "0.1.0"
features = ["ht32f22366", "rt"]

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

In your code:

use ht32f2xxxx::ht32f22366;

let mut peripherals = ht32f22366::Peripherals::take().unwrap();
let gpioa = &peripherals.GPIOA;
gpioa.odr.modify(|_, w| w.odr0().set_bit());

For full details on the autogenerated API, please see: https://docs.rs/svd2rust/0.17.0/svd2rust/#peripheral-api

Supported Devices

Module Devices Links
ht32f22366 TODO TODO, st.com
Commit count: 54

cargo fmt