Skip to content

Commit

Permalink
Fix trigger panic
Browse files Browse the repository at this point in the history
  • Loading branch information
cziter15 committed Jun 16, 2024
1 parent 0e716db commit bdc408e
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 @@ -44,7 +44,7 @@ namespace ksf
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
.trigger_panic = false,
.trigger_panic = true,
};
esp_task_wdt_init(&twdt_config);
#else
Expand Down

0 comments on commit bdc408e

Please sign in to comment.