diff --git a/beginner/apps/src/bin/radio-recv.rs b/beginner/apps/src/bin/radio-recv.rs index d1f4fe3..e3642b0 100644 --- a/beginner/apps/src/bin/radio-recv.rs +++ b/beginner/apps/src/bin/radio-recv.rs @@ -45,7 +45,7 @@ fn main() -> ! { crc ); } - Err(Error::Crc(crc)) => defmt::error!("invalid CRC: {=u16:x}", crc), + Err(Error::Crc(crc)) => defmt::error!("invalid CRC: {:X}", crc), Err(Error::Timeout) => defmt::error!("no response within {} ms", TEN_MS / 1_000), }