Skip to content

cargo-embedprobe-rs documentation change #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
15 changes: 6 additions & 9 deletions boards/atsamv71_xult/Embed.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand All @@ -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"
gdb_connection_string = "127.0.0.1:3333"
2 changes: 1 addition & 1 deletion boards/atsamv71_xult/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
Expand Down
Loading