From f59849ebf464ea385ff03a6a9fa6b6fb4665400c Mon Sep 17 00:00:00 2001 From: btalbot85 <79027771+btalbot85@users.noreply.github.com> Date: Tue, 30 Apr 2024 19:27:32 -0400 Subject: [PATCH] Update Boards.h Fixed issue with RST pin. Incorrect pin currently defined causing issues with board when attempting to use rnsd and getting an error about port in use due to proper reset not happening. Confirmed pins here: https://resource.heltec.cn/download/WiFi_LoRa_32/WIFI_LoRa_32_V2.pdf --- Boards.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Boards.h b/Boards.h index cfc48d7..7e2cc92 100644 --- a/Boards.h +++ b/Boards.h @@ -239,7 +239,7 @@ #define HAS_CONSOLE true #define HAS_EEPROM true const int pin_cs = 18; - const int pin_reset = 23; + const int pin_reset = 14; const int pin_dio = 26; #if defined(EXTERNAL_LEDS) const int pin_led_rx = 36;