diff options
| author | Torin Cooper-Bennun <[email protected]> | 2024-04-19 15:20:04 +0100 |
|---|---|---|
| committer | Torin Cooper-Bennun <[email protected]> | 2024-04-22 13:31:01 +0100 |
| commit | 846abfae2b8a24715542d57d4e6ea4386607d845 (patch) | |
| tree | e70464b1aeda1c6bad93c6c1e6a4bee4e2fe91c6 /examples/stm32h7 | |
| parent | 543c02e649ea8ec05597daca3816c05db2c6ab53 (diff) | |
examples: stm32: can: fix build
Diffstat (limited to 'examples/stm32h7')
| -rw-r--r-- | examples/stm32h7/src/bin/can.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/stm32h7/src/bin/can.rs b/examples/stm32h7/src/bin/can.rs index 22cb27481..a889d5860 100644 --- a/examples/stm32h7/src/bin/can.rs +++ b/examples/stm32h7/src/bin/can.rs | |||
| @@ -67,7 +67,7 @@ async fn main(_spawner: Spawner) { | |||
| 67 | } | 67 | } |
| 68 | } | 68 | } |
| 69 | 69 | ||
| 70 | let (mut tx, mut rx) = can.split(); | 70 | let (mut tx, mut rx, _props) = can.split(); |
| 71 | // With split | 71 | // With split |
| 72 | loop { | 72 | loop { |
| 73 | let frame = can::frame::Frame::new_extended(0x123456F, &[i; 8]).unwrap(); | 73 | let frame = can::frame::Frame::new_extended(0x123456F, &[i; 8]).unwrap(); |
