1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Mockup HAL for STM32 boards.
//!
//! This crate mocks up STM32 HAL API (such as [stm32f0](https://github.com/pollen/stm32f0) for instance). This in mainly useful for unittest.

#![no_std]
#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]

extern crate rand;

pub mod gpio;