1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Peripheral access API for HT32F2YYY microcontrollers
//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
//! 0.17.0)
//!
//! You can find an overview of the API here:
//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.17.0/svd2rust/#peripheral-api)
//!
//! For more details see the README here:
//! [ht32-rs](https://github.com/ht32-rs/ht32-rs)
//!
//! This crate supports all HT32F2YYY devices; for the complete list please
//! see:
//! [ht32f2yyy](https://github.com/ht32-rs/ht32-rs/tree/master/ht32f2yyy)
//!

#![no_std]

mod generic;
pub use self::generic::*;

#[cfg(feature = "ht32f275x")]
pub mod ht32f275x;