1# Copyright Nordic Semiconductor ASA 2023. All rights reserved.
2# SPDX-License-Identifier: Apache-2.0
3
4# The Kconfig file is dedicated to OS management group of
5# of MCUmgr client subsystem and provides Kconfig options to configure
6# group commands behaviour and other aspects.
7#
8# Options defined in this file should be prefixed:
9#  MCUMGR_GRP_OS_CLIENT_ -- general group options;
10#
11# When adding Kconfig options, that control the same feature,
12# try to group them together by the same stem after prefix.
13
14menuconfig MCUMGR_GRP_OS_CLIENT
15	bool "MCUmgr client request and response handlers for OS management"
16	depends on SMP_CLIENT
17	select MCUMGR_SMP_CBOR_MIN_DECODING_LEVEL_3
18	help
19	  Enables MCUmgr client request and response handlers for OS management.
20
21if MCUMGR_GRP_OS_CLIENT
22
23config MCUMGR_GRP_OS_CLIENT_ECHO
24	default y
25	bool "Support for echo command request"
26
27config MCUMGR_GRP_OS_CLIENT_RESET
28	default y
29	bool "support for reset command request"
30
31module = MCUMGR_GRP_OS_CLIENT
32module-str = mcumgr_grp_os_client
33source "subsys/logging/Kconfig.template.log_config"
34
35endif
36