embedded-trainings-2020/down-the-stack/apps/src/bin/uarte_enable.rs
2023-03-21 15:41:08 +01:00

29 lines
625 B
Rust

#![no_main]
#![no_std]
use cortex_m::asm;
use cortex_m_rt::entry;
// ^^^^ import the PAC here
// this imports `down-the-stack/apps/lib.rs` to retrieve our global logger + panicking-behavior
use apps as _;
use defmt;
use defmt_rtt as _; // global logger
#[entry]
fn main() -> ! {
// to enable more verbose logs, go to your `Cargo.toml` and set defmt logging levels
// to `defmt-trace` by changing the `default = []` entry in `[features]`
// Your code goes here...
// this program does not `exit`; use Ctrl+C to terminate it
loop {
asm::nop();
}
}
// The helper function goes here...