Skip to content

Commit db6c2f9

Browse files
committed
Expand macro for interrupt
1 parent 32bd8cd commit db6c2f9

24 files changed

+299
-121
lines changed

.github/workflows/riscv-pac.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [ master, riscv-pac ]
3+
branches: [ master ]
44
pull_request:
55
merge_group:
66

@@ -11,8 +11,8 @@ jobs:
1111
build-riscv:
1212
strategy:
1313
matrix:
14-
# All generated code should be running on stable now, MRSV is 1.60.0
15-
toolchain: [ stable, nightly, 1.60.0 ]
14+
# All generated code should be running on stable now, MRSV is 1.61.0
15+
toolchain: [ stable, nightly, 1.61.0 ]
1616
target:
1717
- riscv32i-unknown-none-elf
1818
- riscv32imc-unknown-none-elf

.github/workflows/riscv-peripheral.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [ master, riscv-pac ]
3+
branches: [ master ]
44
pull_request:
55
merge_group:
66

.github/workflows/riscv-rt.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
# All generated code should be running on stable now, MRSV is 1.60.0
14-
toolchain: [ stable, nightly, 1.60.0 ]
13+
# All generated code should be running on stable now, MRSV is 1.61.0
14+
toolchain: [ stable, nightly, 1.61.0 ]
1515
target:
1616
- riscv32i-unknown-none-elf
1717
- riscv32imc-unknown-none-elf

.github/workflows/riscv-semihosting.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
build-riscv:
1212
strategy:
1313
matrix:
14-
# All generated code should be running on stable now, MRSV is 1.60.0
15-
toolchain: [ stable, nightly, 1.60.0 ]
14+
# All generated code should be running on stable now, MRSV is 1.61.0
15+
toolchain: [ stable, nightly, 1.61.0 ]
1616
target:
1717
- riscv32i-unknown-none-elf
1818
- riscv32imc-unknown-none-elf

.github/workflows/riscv.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
push:
3-
branches: [ master, riscv-pac ]
3+
branches: [ master ]
44
pull_request:
55
merge_group:
66

@@ -11,8 +11,8 @@ jobs:
1111
build-riscv:
1212
strategy:
1313
matrix:
14-
# All generated code should be running on stable now, MRSV is 1.60.0
15-
toolchain: [ stable, nightly, 1.60.0 ]
14+
# All generated code should be running on stable now, MRSV is 1.61.0
15+
toolchain: [ stable, nightly, 1.61.0 ]
1616
target:
1717
- riscv32i-unknown-none-elf
1818
- riscv32imc-unknown-none-elf

riscv-pac/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "riscv-pac"
33
version = "0.1.2"
44
edition = "2021"
5-
rust-version = "1.60"
5+
rust-version = "1.61"
66
repository = "https://github.com/rust-embedded/riscv"
77
authors = ["The RISC-V Team <[email protected]>"]
88
categories = ["embedded", "hardware-support", "no-std"]

riscv-pac/macros/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ license = "MIT OR Apache-2.0"
1010
name = "riscv-pac-macros"
1111
repository = "https://github.com/rust-embedded/riscv"
1212
version = "0.1.0"
13+
edition = "2021"
1314

1415
[lib]
1516
proc-macro = true

0 commit comments

Comments
 (0)