File tree Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -51,23 +51,22 @@ jobs:
51
51
runs-on : ubuntu-latest
52
52
strategy :
53
53
matrix :
54
- rust :
55
- - stable
56
- device-series :
57
- - stm32g4
58
- # - stm32f3
59
- # - stm32h7
54
+ include :
55
+ - { family: stm32g4, device: stm32g474 }
56
+ - { family: stm32g4, device: stm32g484 }
57
+ # - { family: stm32f3, device: stm32f334 }
58
+ # - { family: stm32h7, device: stm32h743 }
60
59
steps :
61
60
- uses : actions/checkout@v2
62
61
- uses : actions-rs/toolchain@v1
63
62
with :
64
63
profile : minimal
65
- toolchain : ${{ matrix.rust }}
64
+ toolchain : stable
66
65
target : thumbv7em-none-eabihf
67
66
override : true
68
- - name : Build stm32g4 examples
69
- run : cd examples/${{ matrix.device-series }}; cargo check --bins
70
- - name : Clippy
71
- run : cd examples/${{ matrix.device-series }}; cargo clippy --bins --features ${{ matrix.device }}
72
67
- name : fmt
73
- run : cd examples/${{ matrix.device-series }}; cargo fmt --check
68
+ run : cd examples/${{ matrix.family }}; cargo fmt --check
69
+ - name : Build ${{ matrix.family }} examples
70
+ run : cd examples/${{ matrix.family }}; cargo check --bins --features ${{ matrix.device }}
71
+ - name : Clippy
72
+ run : cd examples/${{ matrix.family }}; cargo clippy --bins --features ${{ matrix.device }}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ use super::{external_event::EevInputs, fault::FaultInputs};
12
12
13
13
impl HrTimOngoingCalibration {
14
14
/// Look in the hal for an corresponding extension trait for `HRTIM_COMMON`.
15
- ///
15
+ ///
16
16
/// ..unless you are the one implementing the hal
17
17
///
18
18
/// # Safety
You can’t perform that action at this time.
0 commit comments