k210_hal/
lib.rs

1//! HAL for the K210 SoC
2//!
3//! This is an implementation of the [`embedded-hal`] traits for the K210 SoC
4
5#![deny(missing_docs)]
6#![no_std]
7
8pub use k210_pac as pac;
9
10pub mod clock;
11mod external_pins;
12mod fpioa;
13mod peripherals;
14pub mod prelude;
15pub mod serial;
16pub mod stdout;
17pub mod time;
18
19pub use peripherals::Peripherals;