Skip to content
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

TPIU: swo_supports: make struct fields public, improve documentation #381

Merged
merged 3 commits into from
Jan 6, 2022
Merged
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
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- DWT: add `configure` API for address, cycle count comparison (#342, #367).
- ITM: add `configure` API (#342).
- TPIU: add API for *Formatter and Flush Control* (FFCR) and *Selected Pin Control* (SPPR) registers (#342).
- TPIU: add `swo_supports` for checking what SWO configurations the target supports. (#381)
- Add `std` and `serde` crate features for improved host-side ITM decode functionality when working with the downstream `itm`, `cargo-rtic-scope` crates (#363, #366).

## [v0.7.4] - 2021-12-31
Expand Down
11 changes: 6 additions & 5 deletions src/peripheral/tpiu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,17 +87,18 @@ impl core::convert::TryFrom<u8> for TraceProtocol {
}
}

/// The SWO options supported by the TPIU.
/// The SWO options supported by the TPIU, and the mimimum size of the
/// FIFO output queue for trace data.
#[derive(Debug, Eq, PartialEq, Copy, Clone)]
pub struct SWOSupports {
/// Whether UART/NRZ encoding is supported for SWO.
nrz_encoding: bool,
pub nrz_encoding: bool,
/// Whether Manchester encoding is supported for SWO.
manchester_encoding: bool,
pub manchester_encoding: bool,
/// Whether parallel trace port operation is supported.
parallel_operation: bool,
pub parallel_operation: bool,
/// The minimum implemented FIFO queue size of the TPIU for trace data.
min_queue_size: u8,
pub min_queue_size: u8,
}

impl TPIU {
Expand Down