Skip to content

Instantly share code, notes, and snippets.

#![no_std]
#![no_main]
use cortex_m::peripheral;
use cortex_m_rt::entry;
use panic_halt as _;
use stm32f3xx_hal::{pac, delay, prelude::*};
#[entry]
fn main() -> ! {