From 90707c945aa3450cbc66f0e94bae0d91ea403cbb Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Tue, 30 Jan 2024 03:38:37 +0100 Subject: [PATCH] Improved comments --- v10/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/v10/main.c b/v10/main.c index c61764a..4ab0d44 100644 --- a/v10/main.c +++ b/v10/main.c @@ -267,8 +267,11 @@ void handle_cmd_update(uint32_t curent_tick) } /* FALTHROUGH : automatic force delay period, try to use what is available anyway */ case mode_ext_disable: + /* Automatic force disabled due to external control signal, try to use what is available */ + /* FALTHROUGH */ case mode_delayed_heat_prod: - /* automatic force disabled due to current production, try to use what is available */ + /* Automatic force disabled due to current production, try to use what is available */ + /* FALTHROUGH */ case mode_heat: /* Set load power according to extra power production */ if (delta < -1280) { @@ -307,6 +310,7 @@ void handle_cmd_update(uint32_t curent_tick) } break; case mode_temp_OK: + /* FALTHROUGH */ default: cmd = 0; break; -- 2.43.0