From 0e716db7d5f1a2d537da14651b005c0ee2213e75 Mon Sep 17 00:00:00 2001 From: cziter15 Date: Sun, 16 Jun 2024 15:50:45 +0200 Subject: [PATCH] Fix issue in ifdef --- src/ksf/ksConstants.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ksf/ksConstants.cpp b/src/ksf/ksConstants.cpp index a1cc9c3..1343951 100644 --- a/src/ksf/ksConstants.cpp +++ b/src/ksf/ksConstants.cpp @@ -40,7 +40,7 @@ namespace ksf void initializeFramework() { #ifdef ESP32 -#if DARDUINO_3_OR_ABOVE +#if ARDUINO_3_OR_ABOVE esp_task_wdt_config_t twdt_config = { .timeout_ms = KSF_WATCHDOG_TIMEOUT_SECS * 1000, .idle_core_mask = (1 << CONFIG_SOC_CPU_CORES_NUM) - 1, // Bitmask of all cores