aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32u5/src/bin/boot.rs
blob: 23c7f8b22c94da9945ed2f7cf6ad8527263254bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]
#![no_main]

use defmt::*;
use {defmt_rtt as _, embassy_stm32 as _, panic_probe as _};

#[cortex_m_rt::entry]
fn main() -> ! {
    info!("Hello World!");

    loop {
        //defmt::info!("loop!");
    }
}