Skip to content

Commit 7d71db8

Browse files
committed
Resolve review.
Signed-off-by: user3345 <81963672+genan2003@users.noreply.github.com>
1 parent 9b86e73 commit 7d71db8

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

boards/lpc55s69-evk/.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include = [
88
]
99

1010
[build]
11-
target = "thumbv8m.main-none-eabihf"
11+
target = "thumbv8m.main-none-eabi"
1212

1313
[unstable]
1414
config-include = true

boards/lpc55s69-evk/src/io.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ pub struct Writer;
1818
/// Global static for debug writer
1919
pub static mut WRITER: Writer = Writer;
2020

21+
// TODO: This will be implemented later, when UART support will be available
22+
2123
impl Write for Writer {
2224
fn write_str(&mut self, s: &str) -> ::core::fmt::Result {
2325
for _byte in s.as_bytes() {
@@ -51,8 +53,6 @@ pub unsafe fn panic_fmt(panic_info: &PanicInfo) -> ! {
5153
let red_led = GpioPin::new(LPCPin::P1_6);
5254
red_led.make_output();
5355
let led = &mut LedHigh::new(&red_led);
54-
// red_led.set();
55-
// red_led.clear();
5656
let writer = &mut *addr_of_mut!(WRITER);
5757

5858
debug::panic(

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
[toolchain]
66
channel = "nightly-2025-05-19"
77
components = ["miri", "llvm-tools", "rust-src", "rustfmt", "clippy", "rust-analyzer"]
8-
targets = ["thumbv6m-none-eabi", "thumbv7em-none-eabi", "thumbv7em-none-eabihf", "thumbv8m.main-none-eabi", "thumbv8m.main-none-eabihf","riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf"]
8+
targets = ["thumbv6m-none-eabi", "thumbv7em-none-eabi", "thumbv7em-none-eabihf", "thumbv8m.main-none-eabi", "riscv32imc-unknown-none-elf", "riscv32imac-unknown-none-elf"]

0 commit comments

Comments
 (0)