From 62e297c130ac26afe4d7d5752bb79709bd370e39 Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Mon, 17 Nov 2025 16:34:11 -0800 Subject: Allow writing binary to flash (#20) Turns out probe-rs works out of the box. Signed-off-by: Felipe Balbi --- examples/src/bin/blink.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'examples/src') diff --git a/examples/src/bin/blink.rs b/examples/src/bin/blink.rs index d8a57c546..c36fc9421 100644 --- a/examples/src/bin/blink.rs +++ b/examples/src/bin/blink.rs @@ -27,6 +27,8 @@ async fn main(_spawner: Spawner) { init_ostimer0(hal::pac()); } + defmt::info!("Blink example"); + // Initialize embassy-time global driver backed by OSTIMER0 hal::ostimer::time_driver::init(hal::config::Config::default().time_interrupt_priority, 1_000_000); @@ -42,6 +44,8 @@ async fn main(_spawner: Spawner) { // With pauses between letters and words loop { + defmt::info!("SOS"); + // S: three short blinks for _ in 0..3 { led.set_low(); -- cgit