diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-05-30 12:16:17 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-05-30 12:16:17 +0000 |
| commit | b378ec4558306a7d10572301b7e078c055bc47ac (patch) | |
| tree | c44d01880527615a844d7bc7a1c86c9def345909 /tests | |
| parent | 39c5a6c3f7fe294bc7c5e6beaa0eac67399e62f9 (diff) | |
| parent | b4a2f7fb70ac3f0b0d9226ab5ff5aab7a5bf8649 (diff) | |
Merge pull request #3020 from cschuhen/feature/bxcan_no_generics
Remove generics for BXCAN.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/stm32/src/bin/can.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stm32/src/bin/can.rs b/tests/stm32/src/bin/can.rs index 004b1a729..f63076512 100644 --- a/tests/stm32/src/bin/can.rs +++ b/tests/stm32/src/bin/can.rs | |||
| @@ -19,8 +19,8 @@ mod can_common; | |||
| 19 | use can_common::*; | 19 | use can_common::*; |
| 20 | 20 | ||
| 21 | type Can<'d> = embassy_stm32::can::Can<'d, embassy_stm32::peripherals::CAN1>; | 21 | type Can<'d> = embassy_stm32::can::Can<'d, embassy_stm32::peripherals::CAN1>; |
| 22 | type CanTx<'d> = embassy_stm32::can::CanTx<'d, embassy_stm32::peripherals::CAN1>; | 22 | type CanTx<'d> = embassy_stm32::can::CanTx<'d>; |
| 23 | type CanRx<'d> = embassy_stm32::can::CanRx<'d, embassy_stm32::peripherals::CAN1>; | 23 | type CanRx<'d> = embassy_stm32::can::CanRx<'d>; |
| 24 | 24 | ||
| 25 | bind_interrupts!(struct Irqs { | 25 | bind_interrupts!(struct Irqs { |
| 26 | CAN1_RX0 => Rx0InterruptHandler<CAN1>; | 26 | CAN1_RX0 => Rx0InterruptHandler<CAN1>; |
