k210-hal 0.2.0

HAL for K210 SoC
Documentation
//! 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;