Conversation
AI-authored work (opencode/big-pickle): - JLinkController SWO wrappers over pylink-square (enable/start/stop/flush/ read/read_stimulus/num_bytes/enabled), guarded by connected state. - SWO Console tab in the TUI: CPU/SWO speed, port mask/port, bytes, continuous switch, Enable/Start/Read/Stop/Clear buttons, RichLog output. - Shared decode_trace_chunk line-buffering helper (RTT refactored to use it). - Auto-start after connect, stop on disconnect/unmount, restart after reset. - CLI args --swo-cpu-speed/--swo-speed/--swo-port-mask/--swo-port/ --swo-auto-start with parse_args validation. - 54 unit tests in tools/test_jalo_swo.py (pylink mocked), all passing. - Live-probe smoke test of the SWO wrappers against the J-Link remote server. Human review: pending. closes issue-54 (tool-side SWO viewer; target-side ITM init tracked in #41)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add Serial Wire Output (SWO) capture and viewing to
tools/jalo.py, mirroring the existing RTT console workflow.Changes
Verification
tools/test_jalo_swo.py: 54 tests passed.Fixes #54