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

#[path = "../example_common.rs"]
mod example_common;
use example_common::*;

use embassy_stm32 as _;

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

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