Skip to content

Commit

Permalink
Use upperhex uuid in Bootloader's debug; cut release with recent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nickray committed Jun 4, 2021
1 parent 35c6903 commit e06a053
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lpc55"
version = "0.1.0-alpha.5"
version = "0.1.0-alpha.6"
authors = ["Nicolas Stalder <[email protected]>"]
edition = "2018"
description = "Host-side tooling to interact with LPC55 chips via the ROM bootloader"
Expand Down
3 changes: 1 addition & 2 deletions src/bootloader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ impl core::fmt::Debug for Bootloader {
f.debug_struct("Bootloader")
.field("vid", &hexstr!(&self.vid.to_be_bytes()))
.field("pid", &hexstr!(&self.pid.to_be_bytes()))
// .field("uuid", &hexstr!(self.uuid.to_be_bytes().as_ref()))
.field("uuid", &Uuid::from_u128(self.uuid))
.field("uuid", &hexstr!(&self.uuid.to_be_bytes()))
.finish()
}
}
Expand Down

0 comments on commit e06a053

Please sign in to comment.