Skip to content

Commit

Permalink
Fix issue in ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
cziter15 committed Jun 16, 2024
1 parent c45a7b4 commit 0e716db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ksf/ksConstants.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e716db

Please sign in to comment.