1
0

fix(MP/kernel): change default period value

This commit is contained in:
2026-06-05 17:27:59 +02:00
committed by Fastium
parent 943fcefc1c
commit 282d83894e

View File

@@ -9,7 +9,7 @@
/* Internal state of the regulator */ /* Internal state of the regulator */
static int current_mode = 1; /* 1 = Auto, 0 = Manual */ static int current_mode = 1; /* 1 = Auto, 0 = Manual */
static uint32_t current_period = 2; /* Current blinking period in ms */ static uint32_t current_period = 1000; /* Current blinking period in ms */
static struct task_struct *regulator_thread = NULL; static struct task_struct *regulator_thread = NULL;