Do not scan ram to find RTT block, instead use elf to find exact address #35
Workflow file for this run
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
| on: | |
| pull_request: | |
| merge_group: | |
| name: probe-plotter | |
| # Make sure CI fails on all warnings, including Clippy lints | |
| env: | |
| RUSTFLAGS: "-Dwarnings" | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust: | |
| - stable | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| profile: minimal | |
| toolchain: ${{ matrix.rust }} | |
| target: thumbv7em-none-eabihf | |
| override: true | |
| - name: Format | |
| working-directory: ./probe-plotter | |
| run: cargo fmt | |
| - name: Regular build | |
| working-directory: ./probe-plotter | |
| run: cargo check | |
| - name: Clippy | |
| working-directory: ./probe-plotter | |
| run: cargo clippy |