From 1c6092c43001d2c12a93698c67f7f480df7e84d8 Mon Sep 17 00:00:00 2001 From: Zombodotcom Date: Mon, 15 Jun 2020 11:38:15 -0600 Subject: [PATCH] Fixed GPS pin Definitions --- src/configuration.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/configuration.h b/src/configuration.h index 4759dfc7..6b7ba2fd 100644 --- a/src/configuration.h +++ b/src/configuration.h @@ -168,6 +168,13 @@ along with this program. If not, see . // This string must exactly match the case used in release file names or the android updater won't work #define HW_VENDOR "heltec" +// the default ESP32 Pin of 15 is the Oled SCL, set to 36 and 37 and works fine. +//Tested on Neo6m module. +#undef GPS_RX_PIN +#undef GPS_TX_PIN +#define GPS_RX_PIN 36 +#define GPS_TX_PIN 37 + #ifndef USE_JTAG // gpio15 is TDO for JTAG, so no I2C on this board while doing jtag #define I2C_SDA 4 // I2C pins for this board #define I2C_SCL 15