]> git.tnoah.ca Git - lora-radio.git/commitdiff
Update Boards.h
authorbtalbot85 <79027771+btalbot85@users.noreply.github.com>
Tue, 30 Apr 2024 23:27:32 +0000 (19:27 -0400)
committerGitHub <noreply@github.com>
Tue, 30 Apr 2024 23:27:32 +0000 (19:27 -0400)
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

index cfc48d79b188964d2cd22150bf6a49f97ffa87e2..7e2cc927abadc9452990210bbf25837e19320e4a 100644 (file)
--- a/Boards.h
+++ b/Boards.h
       #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;