escw-mcu 0.1.0

Embedded software C wrapper of MCU.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Trais for peripheral of MCU.
//!
//! Provides the trait for common peripherals including GPIO, UART, SPI, IIC and so on.

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

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

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