From 282d83894eacdb8dc5efa9c2728b131b59f558e3 Mon Sep 17 00:00:00 2001 From: fastium Date: Fri, 5 Jun 2026 17:27:59 +0200 Subject: [PATCH] fix(MP/kernel): change default period value --- src/06-mini-project/kernel/regulator/regulator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/06-mini-project/kernel/regulator/regulator.c b/src/06-mini-project/kernel/regulator/regulator.c index f25693d..64b0f1b 100644 --- a/src/06-mini-project/kernel/regulator/regulator.c +++ b/src/06-mini-project/kernel/regulator/regulator.c @@ -9,7 +9,7 @@ /* Internal state of the regulator */ 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;