1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! HAL for the K210 SoC
//!
//! This is an implementation of the [`embedded-hal`] traits for the K210 SoC

#![deny(missing_docs)]
#![no_std]

pub use k210_pac as pac;

pub mod clock;
mod external_pins;
mod fpioa;
mod peripherals;
pub mod prelude;
pub mod serial;
pub mod stdout;
pub mod time;

pub use peripherals::Peripherals;