diff --git a/CHANGELOG.md b/CHANGELOG.md index 098fbcf6..0ff67125 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## [Unreleased] +- Fixed documentation in `boards/atsamv71_xult` to refer to `probe-rs` instead of `cargo-embed` ## [v0.4.6] 2025-03-31 diff --git a/boards/atsamv71_xult/Embed.toml b/boards/atsamv71_xult/Embed.toml index 88ed897d..d075a499 100644 --- a/boards/atsamv71_xult/Embed.toml +++ b/boards/atsamv71_xult/Embed.toml @@ -6,9 +6,6 @@ protocol = "Swd" [default.flashing] # Whether or not the target should be flashed. enabled = true -# Whether or not the target should be halted after reset. -# DEPRECATED, moved to reset section -halt_afterwards = false # Whether or not bytes erased but not rewritten with data from the ELF # should be restored with their contents before erasing. restore_unwritten_bytes = false @@ -56,14 +53,14 @@ enabled = true # String - Directly show output from the target # Defmt - Format output on the host, see https://defmt.ferrous-systems.com/ # BinaryLE - Display as raw hex -channels = [ - { up = 0, down = 0, name = "idle", format = "String" }, - #{ up = 1, name = "log", up_mode = "BlockIfFull", format = "String" }, +up_channels = [ + { channel = 0, format = "String", show_timestamps = true }, +] +down_channels = [ + { channel = 0, mode = "BlockIfFull" }, ] # The duration in ms for which the logger should retry to attach to RTT. timeout = 3000 -# Whether timestamps in the RTTUI are enabled -show_timestamps = true # Whether to save rtt history buffer on exit. log_enabled = true # Where to save rtt history buffer relative to manifest path. @@ -73,4 +70,4 @@ log_path = "./logs" # Whether or not a GDB server should be opened after flashing. enabled = false # The connection string in host:port format wher the GDB server will open a socket. -gdb_connection_string = "127.0.0.1:3333" \ No newline at end of file +gdb_connection_string = "127.0.0.1:3333" diff --git a/boards/atsamv71_xult/README.md b/boards/atsamv71_xult/README.md index 0ce82e96..e0f8e070 100644 --- a/boards/atsamv71_xult/README.md +++ b/boards/atsamv71_xult/README.md @@ -5,7 +5,7 @@ The examples are written in [RTIC](https://rtic.rs). ## Prerequisites * Install the cross-compilation toolchain: `rustup target add thumbv7em-none-eabihf`. -* Install [cargo-embed](https://github.com/probe-rs/cargo-embed): `cargo install cargo-embed`. +* Install [`probe-rs`](https://probe.rs/) (formerly `cargo-embed`) ## Flashing an example First, the General-Purpose Non-Volatile-Memory (GPNVM) boot bit must be set in order to map the flashed firmware to address `0x0`;