blob: ead8e008c64281f573a1e095e957cb94602ea0c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#![no_std]
#![no_main]
#![feature(impl_trait_in_assoc_type)]
use molybdos::genlog::defmt;
use molybdos::reexports::*;
#[defmt::panic_handler]
fn panic() -> ! {
panic_probe::hard_fault();
}
#[embassy_executor::main]
async fn main(_spawner: embassy_executor::Spawner) {
genlog::info!("hello");
molybdos::heap::init();
}
|