Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nahla-nee committed Nov 23, 2024
1 parent 88b18ad commit 592c1f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rp235x-hal-examples/src/bin/rom_funcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ where
Ok(None) => {
_ = writeln!(uart, "chip_info() not supported");
return;
},
}
Err(e) => {
_ = writeln!(uart, "Failed to get chip info : {:?}", e);
return;
Expand All @@ -263,7 +263,7 @@ where
Ok(None) => {
_ = writeln!(uart, "cpu_info() not supported");
return;
},
}
Err(e) => {
_ = writeln!(uart, "Failed to get cpu info: {:?}", e);
return;
Expand Down Expand Up @@ -291,7 +291,7 @@ where
Ok(None) => {
_ = writeln!(uart, "flash_dev_info() not supported");
return;
},
}
Err(e) => {
_ = writeln!(uart, "Failed to get flash device info: {:?}", e);
return;
Expand Down Expand Up @@ -335,7 +335,7 @@ where
Ok(None) => {
_ = writeln!(uart, "boot_random() not supported");
return;
},
}
Err(e) => {
_ = writeln!(uart, "Failed to get random boot integer: {:?}", e);
return;
Expand All @@ -356,7 +356,7 @@ where
Ok(None) => {
_ = writeln!(uart, "boot_info() not supported");
return;
},
}
Err(e) => {
_ = writeln!(uart, "Failed to get boot info: {:?}", e);
return;
Expand Down

0 comments on commit 592c1f2

Please sign in to comment.