From 22ab131c80708d2128232f45094b4abf99994593 Mon Sep 17 00:00:00 2001 From: Luke A Date: Sat, 8 Oct 2022 10:31:56 -0400 Subject: [PATCH] Quick fix for reverse pin and reverse pin LED as well, this is an optional feature and should not be assigned. --- configs/Pico/BoardConfig.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/configs/Pico/BoardConfig.h b/configs/Pico/BoardConfig.h index ff7ab38c..9bf2c7d9 100644 --- a/configs/Pico/BoardConfig.h +++ b/configs/Pico/BoardConfig.h @@ -36,7 +36,7 @@ #define PIN_BUTTON_A1 20 // A1 / Guide / Home / ~ / 13 / ~ #define PIN_BUTTON_A2 21 // A2 / ~ / Capture / ~ / 14 / ~ #define PIN_BUTTON_TURBO 14 // Turbo -#define PIN_BUTTON_REVERSE 22 // UDLR Reverse +#define PIN_BUTTON_REVERSE -1 // UDLR Reverse #define PIN_SLIDER_LS -1 // Left Stick Slider #define PIN_SLIDER_RS -1 // Right Stick Slider @@ -122,10 +122,6 @@ #define ANALOG_ADC_VRY -1 -// Reverse Button section -#define REVERSE_LED_PIN 12 - - // This is the I2C Display section (commonly known as the OLED display section). // In this section you can specify if a display as been enabled, which pins are assined to it, the block address and speed. // The default for `HAS_I2C_DISPLAY` is `1` which enables it. @@ -186,6 +182,8 @@ #define I2C_ANALOG1219_SPEED 400000 #define I2C_ANALOG1219_ADDRESS 0x40 +// Reverse Button section +#define REVERSE_LED_PIN -1 #define REVERSE_UP_DEFAULT 1 #define REVERSE_DOWN_DEFAULT 1 #define REVERSE_LEFT_DEFAULT 1