Skip to content

Commit

Permalink
Merge pull request #81 from imrank03/main
Browse files Browse the repository at this point in the history
Disable the defmt feature in the BootInSuccessState
  • Loading branch information
nihalpasham authored Sep 11, 2024
2 parents 8437fd2 + 41a0d8f commit d4394d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boards/hal/src/rpi/rpi4/panic_wait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fn panic(info: &PanicInfo) -> ! {
location,
line,
column,
info.message().unwrap_or(&format_args!("")),
info.message(),
);

cpu_core::wait_forever()
Expand Down
4 changes: 2 additions & 2 deletions boards/update/src/update/update_flash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ where
{
match self.rustboot_update(true) {
Err(_v) => {
#[cfg(feature = "defmt")]
// #[cfg(feature = "defmt")]
panic!("all boot options exhausted")
} // all boot options exhausted
Ok(ref mut img) => {
Expand All @@ -321,7 +321,7 @@ where
{
match self.rustboot_update(true) {
Err(_v) => {
#[cfg(feature = "defmt")]
// #[cfg(feature = "defmt")]
panic!("all boot options exhausted")
} // all boot options exhausted
Ok(ref mut img) => {
Expand Down

0 comments on commit d4394d3

Please sign in to comment.