From df550540b86905bb6ece62bd4859efd8dc60903c Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Mon, 16 Jun 2025 13:00:20 +0200 Subject: [PATCH] dummy pins for compile checks Signed-off-by: Peter Siegmund --- main/app_task.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main/app_task.cpp b/main/app_task.cpp index d4e6231..2f7f844 100644 --- a/main/app_task.cpp +++ b/main/app_task.cpp @@ -9,8 +9,14 @@ #include "button_handling.h" #include "ui/SplashScreen.h" +#if defined(CONFIG_IDF_TARGET_ESP32S3) #define PIN_SDA GPIO_NUM_35 #define PIN_SCL GPIO_NUM_36 +#else +/// just dummy pins, because of compile check +#define PIN_SDA GPIO_NUM_20 +#define PIN_SCL GPIO_NUM_21 +#endif #define PIN_RST GPIO_NUM_NC static const char *TAG = "app_task";