1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Board support crate for the Proton C
//!
//! # Usage
//!
//! - Trying out the examples

#![no_std]

pub extern crate stm32f3xx_hal as hal;

pub mod led;