File tree 4 files changed +9
-7
lines changed
4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 13
13
freertos-rust :
14
14
name : Build freertos-rust
15
15
runs-on : ubuntu-latest
16
- # env:
17
- # RUSTFLAGS: -D warnings # Warnings disabled only in CI
16
+ env :
17
+ RUSTFLAGS : -D warnings # Warnings disabled only in CI
18
18
steps :
19
19
- name : Clone
20
20
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1
1
/target
2
- /.idea
2
+ /.idea
3
+ /.vscode
4
+ Cargo.lock
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ embedded-hal = "0.2.3"
29
29
stm32f4xx-hal = {version = " 0.8.3" , features = [" rt" , " stm32f411" ]}
30
30
31
31
# Example: nrf9160
32
- [target .thumbv8m .main-none-eabihf .dependencies ]
32
+ [target ." thumbv8m .main-none-eabihf" .dependencies ]
33
33
nrf9160-pac = " 0.2.1"
34
34
35
35
# Example: win
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ use crate::shim::*;
4
4
5
5
#[ derive( Debug , Copy , Clone ) ]
6
6
pub struct TypeSizeError {
7
- id : usize ,
8
- c_size : usize ,
9
- rust_size : usize ,
7
+ pub id : usize ,
8
+ pub c_size : usize ,
9
+ pub rust_size : usize ,
10
10
}
11
11
12
12
#[ cfg( feature = "cpu_clock" ) ]
You can’t perform that action at this time.
0 commit comments