ch57x/
lib.rs

1//! Peripheral access API for CH57X microcontrollers
2//! (generated using [svd2rust](https://github.com/rust-embedded/svd2rust)
3//! 0.26.0)
4//!
5//! You can find an overview of the API here:
6//! [svd2rust/#peripheral-api](https://docs.rs/svd2rust/0.26.0/svd2rust/#peripheral-api)
7//!
8//! For more details see the README here:
9//! [ch32-rs](https://github.com/ch32-rs/ch32-rs)
10//!
11//! This crate supports all CH57X devices; for the complete list please
12//! see:
13//! [ch57x](https://crates.io/crates/ch57x)
14//!
15
16#![allow(non_camel_case_types)]
17#![allow(non_snake_case)]
18#![no_std]
19
20mod generic;
21pub use self::generic::*;
22
23#[cfg(feature = "ch57x")]
24pub mod ch57x;
25