From 72d50901647a9f3b43649765a681a9fdca85ecfb Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Tue, 20 Jun 2023 11:30:32 +0200 Subject: [PATCH] Fix: CAN(0) RX/TX pins have moved on final version of Uno R4 WiFi. Instead of pins 4 and 5 its now pins 10 and 13 for CAN0_RX and CAN0_TX. Former-commit-id: fe593e77992c82482da62e0945f219d69a30943b --- variants/UNOWIFIR4/pins_arduino.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variants/UNOWIFIR4/pins_arduino.h b/variants/UNOWIFIR4/pins_arduino.h index 115e5bf6..3f79c87c 100644 --- a/variants/UNOWIFIR4/pins_arduino.h +++ b/variants/UNOWIFIR4/pins_arduino.h @@ -129,8 +129,8 @@ static const uint8_t SS = PIN_SPI_CS; #define CAN_HOWMANY 1 -#define PIN_CAN0_TX (4) -#define PIN_CAN0_RX (5) +#define PIN_CAN0_TX (10) +#define PIN_CAN0_RX (13) #define PIN_CAN0_STBY (-1) #define EXT_INTERRUPTS_HOWMANY 2