12 lines
185 B
Rust
Executable file
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")
|
|
}
|