probe-run 0.3.10

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

use app as _;

#[cortex_m_rt::entry]
fn main() -> ! {
    defmt::panic!()
}