dummy pins for compile checks

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-06-16 13:00:20 +02:00
parent 6645263ba2
commit df550540b8

View File

@@ -9,8 +9,14 @@
#include "button_handling.h" #include "button_handling.h"
#include "ui/SplashScreen.h" #include "ui/SplashScreen.h"
#if defined(CONFIG_IDF_TARGET_ESP32S3)
#define PIN_SDA GPIO_NUM_35 #define PIN_SDA GPIO_NUM_35
#define PIN_SCL GPIO_NUM_36 #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 #define PIN_RST GPIO_NUM_NC
static const char *TAG = "app_task"; static const char *TAG = "app_task";