From 5f8f2be7b069abbcbfc68f837cbce088883df726 Mon Sep 17 00:00:00 2001 From: bogdan Date: Tue, 16 May 2023 08:06:56 +0200 Subject: [PATCH] added cron in global configuration --- Kconfig | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index 0604b0f..5d6fa1c 100644 --- a/Kconfig +++ b/Kconfig @@ -104,7 +104,24 @@ menu "WebGUIApp" help Timezone in hours. Positive for East and negative for the West endmenu - + + menu "CRON settings" + config WEBGUIAPP_CRON_ENABLE + bool "Enabled CRON scheduler" + default y + help + Include CRON functionality into firmware + + if WEBGUIAPP_CRON_ENABLE + + config WEBGUIAPP_CRON_NUMBER + int "CRON tasks number" + range 1 32 + default 16 + help + Max number of CRON schedulers in the system + endif + endmenu menu "SPI settings"