File tree 2 files changed +22
-1
lines changed
examples/i2c-passthru/icd
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -79,3 +79,24 @@ cargo build \
79
79
cargo build \
80
80
--manifest-path examples/waveshare-rp2040-keyboard-3/demo/Cargo.toml \
81
81
--profile ci
82
+
83
+ # ## i2c-passthru
84
+ cargo check \
85
+ --manifest-path examples/i2c-passthru/icd/Cargo.toml \
86
+ --features=" use-std" \
87
+ --profile ci
88
+
89
+ cargo check \
90
+ --manifest-path examples/i2c-passthru/icd/Cargo.toml \
91
+ --no-default-features \
92
+ --target thumbv6m-none-eabi \
93
+ --profile ci
94
+
95
+ cargo build \
96
+ --manifest-path examples/i2c-passthru/rp2040/Cargo.toml \
97
+ --target thumbv6m-none-eabi \
98
+ --profile ci
99
+
100
+ cargo build \
101
+ --manifest-path examples/i2c-passthru/demo/Cargo.toml \
102
+ --profile ci
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ version = "0.2"
16
16
features = [" derive" ]
17
17
18
18
[features ]
19
- use-std = []
19
+ use-std = [" postcard-schema/use-std " ]
20
20
21
21
[profile .ci ]
22
22
inherits = " dev"
You can’t perform that action at this time.
0 commit comments