Crates.io | probe-rs-targets |
lib.rs | probe-rs-targets |
version | 0.2.0 |
source | src |
created_at | 2019-10-23 21:34:33.898494 |
updated_at | 2019-10-23 21:34:33.898494 |
description | A collection of on chip debugging tools to comminicate with ARM chips. |
homepage | https://github.com/probe-rs/probe-rs |
repository | https://github.com/probe-rs/probe-rs |
max_upload_size | |
id | 175015 |
size | 20,978 |
A debugging toolset and library for debugging ARM cores on a separate host.
The goal of this library is to provide a toolset to interact with a variety of embedded MCUs and debug probes. For starters, ARM cores will be supported through use of the CoreSight protocol. If there is high demand and more contributors, it is intended to add support for other architectures.
Similar projects like OpenOCD, PyOCD, Segger Toolset, ST Tooling, etc. exist. They all implement the GDB protocol and their own protocol on top of it to enable GDB to communicate with the debug probe. This is not standardized and also little bit unstable sometimes. For every tool the commands are different and so on.
This project gets rid of the GDB layer and provides a direct interface to the debug probe, which then enables other software, for example VisualStudio to use it's debug functionality.
What's more is that we can use CoreSight to its full extent. We can trace and modify memory as well as registers in real time.
The end goal is a complete library toolset to enable other tools to use the functionality of CoreSight.
Focus of the development is having a full implementation (CoreSight, Flashing, Debugging) working for the DAPLink and go from there.
For downloading an ELF binary (standard cargo build output), you should use the cargo-flash
utility.
You can install it via cargo install cargo-flash
and then use it via cargo flash
or just use your own built cargo-flash
. cargo flash
is just an alias for cargo-flash
.
Use cargo flash
to build your binary and download the ELF binary to your target.
You can pass some arguments you could pass to cargo build
to configure your build target. Use cargo flash --help
for a list of available commands.
If you do not pass a target via cargo flash --target <target-triplet>
probe-rs will try to identify your target. If this doesn't succeed, please specify your target manually.
To demonstrate the functionality a small cli was written. Fire it up with
cargo run -p cli -- help
The help dialog should then tell you how to use the CLI.
Don't hesitate to file an issue, ask questions on matrix, or contact @Yatekii by e-mail.
Please have a look at the issues or open one if you feel that something is needed.
Any contibutions are very welcome!
Also have a look at CONTRIBUTING.md.
Licensed under either of
This crate contains code (the flash algorithms) that's highly based on the code of the pyOCD project.
Some of this code might reside in the ocd::probe::flash
module and is subject to the Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) terms.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.