nucleo-l053r8/src/main.rs

12 lines
185 B
Rust
Executable file

#![no_main]
#![no_std]
extern crate panic_halt;
use cortex_m_rt::entry;
use hal::{pac, prelude::*, rcc::Config};
#[entry]
fn main() -> ! {
compile_error!("Use blinky example")
}