probe-run 0.3.11

Runs embedded programs just like native ones
1
2
3
4
5
6
7
8
9
10
#![no_main]
#![no_std]

use app as _;

#[cortex_m_rt::entry]
fn main() -> ! {
    defmt::flush(); // BUG: panics without `defmt::flush` or `defmt::println
    loop {}
}