blue_pill_ui/cross/src/lib.rs

12 lines
237 B
Rust

//! Blue Pill Rust project with UI and RTIC
//!
//! This is the core library of the firmware that runs on the Blue Pill itself
#![no_std]
#![no_main]
use panic_rtt_target as _;
use stm32f1xx_hal as _; // memory layout
pub mod board;