From aed3b95ec165b43847799078a73bb7bd48e32c84 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Wed, 19 Mar 2025 12:49:05 +0100 Subject: [PATCH] Removed config.h --- TEF6686_ESP32.ino | 2 +- src/config.h | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 src/config.h diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index f7c0a90..98068da 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -21,7 +21,6 @@ #include "src/FREQFONT.h" #include "src/TEF6686.h" #include "src/constants.h" -#include "src/config.h" #include "src/language.h" #include "src/gui.h" #include "src/comms.h" @@ -44,6 +43,7 @@ #define EXT_IRQ 14 #define DYNAMIC_SPI_SPEED // uncomment to enable dynamic SPI Speed https://github.com/ohmytime/TFT_eSPI_DynamicSpeed +//#define HAS_AIR_BAND // uncomment to enable Air Band(Make sure you have Air Band extend board) #ifdef ARS TFT_eSPI tft = TFT_eSPI(320, 240); diff --git a/src/config.h b/src/config.h deleted file mode 100644 index e28f824..0000000 --- a/src/config.h +++ /dev/null @@ -1,9 +0,0 @@ -#ifndef CONFIG_H -#define CONFIG_H - -#include - -// #define HAS_AIR_BAND // uncomment to enable Air Band(Make sure you have Air Band extend board) -// #define DEEPELEC_DP_66X // uncomment for DEEPELEC Portable DP-66X build (Simplified Chinese) - -#endif