18 lines
295 B
Rust
18 lines
295 B
Rust
//! This example shows TRNG usage
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use defmt::*;
|
|
use embassy_executor::Spawner;
|
|
use embassy_rp::bind_interrupts;
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
#[embassy_executor::main]
|
|
async fn main(_spawner: Spawner) {
|
|
|
|
|
|
loop {
|
|
println!("Hello, world!");
|
|
}
|
|
}
|