From bf1ab1bfb423688752086dcfba75ed4558d90204 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 2 Sep 2025 10:17:03 -0400 Subject: [PATCH] v1_2 missing library update --- .github/workflows/build.yml | 2 +- src/LoRa_APRS_iGate.cpp | 2 +- src/display.cpp | 3 ++ variants/heltec_wireless_paper/board_pinout.h | 52 ------------------- variants/heltec_wireless_paper/platformio.ini | 10 ---- .../heltec_wireless_paper_v1_2/board_pinout.h | 52 ------------------- .../heltec_wireless_paper_v1_2/platformio.ini | 10 ---- 7 files changed, 5 insertions(+), 126 deletions(-) delete mode 100644 variants/heltec_wireless_paper/board_pinout.h delete mode 100644 variants/heltec_wireless_paper/platformio.ini delete mode 100644 variants/heltec_wireless_paper_v1_2/board_pinout.h delete mode 100644 variants/heltec_wireless_paper_v1_2/platformio.ini diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2884533..91713d1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,7 +67,7 @@ jobs: chip: esp32s3 - name: heltec_ht-ct62 chip: esp32c3 - - name: heltec_wireless_paper + - name: heltec_wireless_paper_v1 chip: esp32s3 - name: OE5HWN_MeshCom chip: esp32 diff --git a/src/LoRa_APRS_iGate.cpp b/src/LoRa_APRS_iGate.cpp index 76e1b24..0cc9fcd 100644 --- a/src/LoRa_APRS_iGate.cpp +++ b/src/LoRa_APRS_iGate.cpp @@ -67,7 +67,7 @@ ___________________________________________________________________*/ #endif -String versionDate = "2025-08-29"; +String versionDate = "2025-09-02"; String versionNumber = "3.1"; Configuration Config; WiFiClient aprsIsClient; diff --git a/src/display.cpp b/src/display.cpp index e3b2746..685eca4 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -47,6 +47,9 @@ #ifdef HELTEC_WP_V1 EInkDisplay_WirelessPaperV1_1 display; #endif + /*#ifdef HELTEC_WP_V1_2 // SOON! + EInkDisplay_WirelessPaperV1_2 display; + #endif*/ String lastEpaperText; #else #include diff --git a/variants/heltec_wireless_paper/board_pinout.h b/variants/heltec_wireless_paper/board_pinout.h deleted file mode 100644 index f715d04..0000000 --- a/variants/heltec_wireless_paper/board_pinout.h +++ /dev/null @@ -1,52 +0,0 @@ -/* Copyright (C) 2025 Ricardo Guzman - CA2RXU - * - * This file is part of LoRa APRS iGate. - * - * LoRa APRS iGate is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * LoRa APRS iGate is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with LoRa APRS iGate. If not, see . - */ - -#ifndef BOARD_PINOUT_H_ -#define BOARD_PINOUT_H_ - - // LoRa Radio - #define HAS_SX1262 - #define RADIO_SCLK_PIN 9 - #define RADIO_MISO_PIN 11 - #define RADIO_MOSI_PIN 10 - #define RADIO_CS_PIN 8 - #define RADIO_RST_PIN 12 - #define RADIO_DIO1_PIN 14 - #define RADIO_BUSY_PIN 13 - #define RADIO_WAKEUP_PIN RADIO_DIO1_PIN - #define GPIO_WAKEUP_PIN GPIO_SEL_14 - - // Display - #define HAS_DISPLAY - #define HAS_EPAPER - #define EPAPER_BUSY 7 - #define EPAPER_RST 6 - #define EPAPER_DC 5 - #define EPAPER_CS 4 - #define EPAPER_SCL 3 - #define EPAPER_SDA 2 - - // Aditional Config - #define INTERNAL_LED_PIN 18 - #define BATTERY_PIN 20 - #define ADC_CTRL 19 - #define VEXT_CTRL 45 - #define BOARD_I2C_SDA 37 - #define BOARD_I2C_SCL 36 - -#endif \ No newline at end of file diff --git a/variants/heltec_wireless_paper/platformio.ini b/variants/heltec_wireless_paper/platformio.ini deleted file mode 100644 index 441e67c..0000000 --- a/variants/heltec_wireless_paper/platformio.ini +++ /dev/null @@ -1,10 +0,0 @@ -[env:heltec_wireless_paper] -board = esp32-s3-devkitc-1 -board_build.mcu = esp32s3 -build_flags = - ${common.build_flags} - -D HELTEC_WP - -D WIRELESS_PAPER -lib_deps = - ${common.lib_deps} - todd-herbert/heltec-eink-modules@^4.4.0 \ No newline at end of file diff --git a/variants/heltec_wireless_paper_v1_2/board_pinout.h b/variants/heltec_wireless_paper_v1_2/board_pinout.h deleted file mode 100644 index f715d04..0000000 --- a/variants/heltec_wireless_paper_v1_2/board_pinout.h +++ /dev/null @@ -1,52 +0,0 @@ -/* Copyright (C) 2025 Ricardo Guzman - CA2RXU - * - * This file is part of LoRa APRS iGate. - * - * LoRa APRS iGate is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * LoRa APRS iGate is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with LoRa APRS iGate. If not, see . - */ - -#ifndef BOARD_PINOUT_H_ -#define BOARD_PINOUT_H_ - - // LoRa Radio - #define HAS_SX1262 - #define RADIO_SCLK_PIN 9 - #define RADIO_MISO_PIN 11 - #define RADIO_MOSI_PIN 10 - #define RADIO_CS_PIN 8 - #define RADIO_RST_PIN 12 - #define RADIO_DIO1_PIN 14 - #define RADIO_BUSY_PIN 13 - #define RADIO_WAKEUP_PIN RADIO_DIO1_PIN - #define GPIO_WAKEUP_PIN GPIO_SEL_14 - - // Display - #define HAS_DISPLAY - #define HAS_EPAPER - #define EPAPER_BUSY 7 - #define EPAPER_RST 6 - #define EPAPER_DC 5 - #define EPAPER_CS 4 - #define EPAPER_SCL 3 - #define EPAPER_SDA 2 - - // Aditional Config - #define INTERNAL_LED_PIN 18 - #define BATTERY_PIN 20 - #define ADC_CTRL 19 - #define VEXT_CTRL 45 - #define BOARD_I2C_SDA 37 - #define BOARD_I2C_SCL 36 - -#endif \ No newline at end of file diff --git a/variants/heltec_wireless_paper_v1_2/platformio.ini b/variants/heltec_wireless_paper_v1_2/platformio.ini deleted file mode 100644 index 9f8651d..0000000 --- a/variants/heltec_wireless_paper_v1_2/platformio.ini +++ /dev/null @@ -1,10 +0,0 @@ -[env:heltec_wireless_paper_v1_2] -board = esp32-s3-devkitc-1 -board_build.mcu = esp32s3 -build_flags = - ${common.build_flags} - -D HELTEC_WP_V1_2 - -D WIRELESS_PAPER -lib_deps = - ${common.lib_deps} - todd-herbert/heltec-eink-modules @ 4.5.0 \ No newline at end of file