Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/probe-rs/rtt-target
Target side implementation of the RTT (Real-Time Transfer) I/O protocol
https://github.com/probe-rs/rtt-target
Last synced: 3 months ago
JSON representation
Target side implementation of the RTT (Real-Time Transfer) I/O protocol
- Host: GitHub
- URL: https://github.com/probe-rs/rtt-target
- Owner: probe-rs
- License: mit
- Created: 2020-04-04T21:33:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-01-04T15:56:21.000Z (10 months ago)
- Last Synced: 2024-04-14T09:04:29.915Z (7 months ago)
- Language: Rust
- Homepage:
- Size: 84 KB
- Stars: 91
- Watchers: 8
- Forks: 24
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rtt-target
[![crates.io](https://img.shields.io/crates/v/rtt-target.svg)](https://crates.io/crates/rtt-target) [![documentation](https://docs.rs/rtt-target/badge.svg)](https://docs.rs/rtt-target)
Target side implementation of the RTT (Real-Time Transfer) I/O protocol. RTT implements input and output via a debug probe using in-memory ring buffers and polling. This enables debug logging from the microcontroller with minimal delays and no blocking, making it usable even in real-time applications where e.g. semihosting delays cannot be tolerated.
## [Documentation](https://docs.rs/rtt-target)
## Platform support
To use the global `rprintln!` macro, a platform-specific [`critical-section`](https://github.com/rust-embedded/critical-section) implementation is needed for locking.
Output directly to a channel object with `write!` or the binary `write` method does not require locking and therefore does not need any platform-specific critical section.
## Usage
With a platform-specific critical section in use, printing is as simple as:
```rust
use rtt_target::{rtt_init_print, rprintln};fn main() {
rtt_init_print!();
loop {
rprintln!("Hello, world!");
}
}
````rtt-target` also supports initializing multiple RTT channels, and even has a logger implementation
for [`defmt`](https://defmt.ferrous-systems.com/) that can be used in conjunction with arbitrary
channel setups. The `defmt` integration requires setting `features = ["defmt"]`, and the used
channel needs to be manually configured with `set_defmt_channel`.For more information, please check out the [documentation](https://docs.rs/rtt-target).
## Development
The examples-cortex-m and panic-test crates come with build files for the venerable STM32F103C8xx by default, but can be easily adapted for any chip as they contain only minimal platform-specific runtime code to get `fn main` to run.