From 8097937cdb9a5b1b6457241c2ede3d3c87f16f48 Mon Sep 17 00:00:00 2001 From: Jannik Beyerstedt Date: Mon, 22 Jun 2026 22:57:48 +0200 Subject: [PATCH] WIP: try to debug V2X rx dropouts --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 23ed774..d1603f3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -321,6 +321,8 @@ fn handle_frame(frame: wifi::sniffer::PromiscuousPkt<'_>) { .naive_utc() }; + esp_println::print!("."); // TODO: debug only! + // Ignore frames with errors and non-data frames if frame.rx_cntl.rx_state != 0 { warn!("Received frame has RX error: {}", frame.rx_cntl.rx_state);