Adding Tokens so that peripherals that share bits in the RCC can know that they have been enabled without taking ownership of their respective rec struct.
#206
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: | |
| push: | |
| branches: [master] | |
| name: Clippy | |
| jobs: | |
| clippy_check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install thumb8 rust target | |
| run: rustup target add thumbv8m.main-none-eabihf | |
| - name: Cargo clippy | |
| run: cargo clippy --examples --target thumbv8m.main-none-eabihf --features=rt,stm32h503 -- -D warnings |