Moved config options from prj to libs
All checks were successful
Deploy Docs / build-and-deploy (push) Successful in 13s

This commit is contained in:
2026-02-10 08:24:41 +01:00
parent 93a7da7855
commit 1b8d3e17b8
5 changed files with 35 additions and 12 deletions

View File

@@ -0,0 +1,5 @@
if(CONFIG_FS_MGMT)
zephyr_library()
zephyr_sources(src/fs_mgmt.c)
zephyr_include_directories(include)
endif()

View File

@@ -0,0 +1,15 @@
menuconfig FS_MGMT
bool "File System Management"
select FLASH
select FILE_SYSTEM
select FILE_SYSTEM_LITTLEFS
select FILE_SYSTEM_MKFS
help
Library for initializing and managing the file system.
if FS_MGMT
# Logging configuration for the File System Management module
module = FS_MGMT
module-str = fs_mgmt
source "subsys/logging/Kconfig.template.log_config"
endif # FS_MGMT

View File

@@ -1,12 +1,23 @@
menuconfig THREAD_MGMT
bool "Thread Management"
depends on OPENTHREAD
select LASERTAG_UTILS
select NETWORKING
select NET_L2_OPENTHREAD
select OPENTHREAD
select OPENTHREAD_SHELL
help
Library for initializing and managing the OpenThread stack.
if THREAD_MGMT
# Logging configuration for the Thread Management module
module = THREAD_MGMT
module-str = thread_mgmt
source "subsys/logging/Kconfig.template.log_config"
# Openthread configuration options
config OPENTHREAD_DEFAULT_TX_POWER
default 8
range -40 8
help
Default transmit power for OpenThread. The value is in dBm and can be set according to the requirements of your application and regulatory limits.
endif # THREAD_MGMT