This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![no_std] | |
#![no_main] | |
use panic_halt as _; // you can put a breakpoint on `rust_begin_unwind` to catch panics | |
use cortex_m_rt::entry; | |
use stm32f4xx_hal as hal; | |
use crate::hal::{prelude::*, stm32}; | |
#[entry] |
OlderNewer