Select Git revision
lib.rs 1005 B
//! HAL for the STM32F4x family of microcontrollers
//!
//! This is an implementation of the [`embedded-hal`] traits for the STM32F4x family of
//! microcontrollers.
//!
//! [`embedded-hal`]: https://github.com/japaric/embedded-hal
//!
//! # Usage
//!
//! To build applications (binary crates) using this crate follow the [cortex-m-quickstart]
//! instructions and add this crate as a dependency in step number 5 and make sure you enable the
//! "rt" Cargo feature of this crate.
//!
//! [cortex-m-quickstart]: https://docs.rs/cortex-m-quickstart/~0.2.3
//!
//! # Examples
//!
//! See examples directory for generic usage
#![deny(missing_docs)]
//#![deny(warnings)]
#![feature(never_type)]
#![no_std]
extern crate cast;
extern crate cortex_m;
extern crate embedded_hal as hal;
extern crate nb;
pub extern crate stm32f413 as stm32f4x;
pub mod delay;
pub mod flash;
pub mod gpio;
// pub mod i2c;
pub mod prelude;
pub mod rcc;
pub mod serial;
// pub mod spi;
pub mod time;
// pub mod timer;
pub mod led;