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

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!");
    }
}