From e8097451205b00faaf0bf2e15f021a757f77b102 Mon Sep 17 00:00:00 2001 From: Kostas Missos Date: Sun, 16 Dec 2018 16:59:25 +0200 Subject: [PATCH] Auto HOS power off disabled by default Enable it in options --- bootloader/config/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootloader/config/config.c b/bootloader/config/config.c index 9413acc..7a5313c 100644 --- a/bootloader/config/config.c +++ b/bootloader/config/config.c @@ -46,7 +46,7 @@ void set_default_configuration() h_cfg.se_keygen_done = 0; h_cfg.sbar_time_keeping = 0; h_cfg.backlight = 100; - h_cfg.autohosoff = 1; + h_cfg.autohosoff = 0; h_cfg.errors = 0; }