From c8df958f2dd61b538bd3b4abce5cc2008ed50a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=B3r=C3=A1nt=20Pint=C3=A9r?= Date: Mon, 9 Dec 2024 20:22:07 +0100 Subject: [PATCH] Increase battery task stack --- main/devices/Device.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/devices/Device.hpp b/main/devices/Device.hpp index a0c60bfb..16f40bb5 100644 --- a/main/devices/Device.hpp +++ b/main/devices/Device.hpp @@ -280,7 +280,7 @@ class ConfiguredKernel { enterLowPowerDeepSleep(); } - Task::loop("battery", 1536, [this](Task& task) { + Task::loop("battery", 2048, [this](Task& task) { checkBatteryVoltage(task); }); }