Skip to content

Commit 9404cf4

Browse files
authored
Merge pull request #9 from 9names/ci-fixes
CI fixes
2 parents ecd2c06 + 9d3748c commit 9404cf4

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/clippy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
clippy-check-arm:
55
runs-on: ubuntu-20.04
66
env:
7-
RUSTFLAGS: "-D warnings"
7+
RUSTFLAGS: "-D warnings -Aclippy::needless_lifetimes"
88
steps:
99
- uses: actions/checkout@v4
1010
- uses: dtolnay/rust-toolchain@stable
@@ -15,7 +15,7 @@ jobs:
1515
clippy-check-riscv:
1616
runs-on: ubuntu-20.04
1717
env:
18-
RUSTFLAGS: "-D warnings"
18+
RUSTFLAGS: "-D warnings -Aclippy::needless_lifetimes"
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: dtolnay/rust-toolchain@stable

svd/RP2350.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ DMA:
55
_modify:
66
"CHAIN_TO":
77
description: "When this channel completes, it will trigger the channel indicated by CHAIN_TO. Disable by setting CHAIN_TO = _(this channel)_. \\n
8-
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
8+
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
99
CH0_AL1_CTRL:
1010
_modify:
1111
"CHAIN_TO":
1212
description: "When this channel completes, it will trigger the channel indicated by CHAIN_TO. Disable by setting CHAIN_TO = _(this channel)_. \\n
13-
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
13+
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
1414
CH0_AL2_CTRL:
1515
_modify:
1616
"CHAIN_TO":
1717
description: "When this channel completes, it will trigger the channel indicated by CHAIN_TO. Disable by setting CHAIN_TO = _(this channel)_. \\n
18-
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
18+
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
1919
CH0_AL3_CTRL:
2020
_modify:
2121
"CHAIN_TO":
2222
description: "When this channel completes, it will trigger the channel indicated by CHAIN_TO. Disable by setting CHAIN_TO = _(this channel)_. \\n
23-
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
23+
Reset value is 0, which means for channels 1 and above the default will be to chain to channel 0 - set this field to avoid this behaviour."
2424

2525
"CH*_CTRL*":
2626
"TREQ_SEL":

update.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
66

77
set -exuo pipefail
88

9-
cargo install --version 0.33.4 svd2rust
10-
cargo install --version 0.12.1 form
9+
cargo install --version 0.33.4 svd2rust --locked
10+
cargo install --version 0.12.1 form --locked
1111
rustup component add rustfmt
1212
if [ "$SVDTOOLS" == "svdtools" ]; then
13-
cargo install --version 0.3.17 svdtools
13+
cargo install --version 0.3.20 svdtools --locked
1414
else
1515
python3 -mvenv --clear .venv
1616
source .venv/bin/activate

0 commit comments

Comments
 (0)