Skip to content

Commit

Permalink
boards: Fix device UUID logging for nrf52
Browse files Browse the repository at this point in the history
Fixes: #498
  • Loading branch information
robin-nitrokey committed May 13, 2024
1 parent a7f1278 commit cc918a9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions components/boards/src/soc/nrf52.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,7 @@ pub fn init_bootup(
info!("RESET Reason: {:x}", power.resetreas.read().bits());
power.resetreas.write(|w| w);

info!(
"FICR DeviceID {}",
delog::hex_str!(unsafe { &DEVICE_UUID[0..8] })
);
info!("FICR DeviceID {}", delog::hex_str!(&uuid),);
info!(
"FICR IdtRoot {:08x} {:08x} {:08x} {:08x}",
ficr.ir[0].read().bits(),
Expand Down

0 comments on commit cc918a9

Please sign in to comment.