fix(kconfig): Fix issues with Kconfig files

This commit is contained in:
Jan Beran
2025-02-04 11:44:15 +01:00
parent 8685219916
commit 4b3d7a33f4
8 changed files with 14 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ menu "OpenThread Border Router Example"
config OPENTHREAD_BR_AUTO_START
bool 'Enable the automatic start mode in Thread Border Router.'
default False
default n
help
If enabled, The Thread Border Router will connect to Wi-Fi with pre-configured
SSID and PSK, and then form a Thread network automatically. Otherwise, user need
@@ -10,7 +10,7 @@ menu "OpenThread Border Router Example"
config OPENTHREAD_SUPPORT_HW_RESET_RCP
bool 'Enable hardware RCP resetting'
default False
default n
help
If enabled, the Thread Border Router will support hardware resetting the RCP
when processing RCP failure.

View File

@@ -2,7 +2,7 @@ menu "OpenThread CLI Example"
config OPENTHREAD_AUTO_START
bool 'Enable the automatic start mode.'
default False
default n
help
If enabled, the Openthread Device will create or connect to thread network with pre-configured
network parameters automatically. Otherwise, user need to configure Thread via CLI command manually.

View File

@@ -5,7 +5,7 @@ menu "OpenThread Device Role Indicator"
config OPENTHREAD_STATE_INDICATOR_ENABLE
depends on SOC_RMT_SUPPORTED
bool 'Enable the LED for openthread deivce'
default False
default n
help
If enabled, the LED of ESP Openthread Device will display different colors based on the current role.

View File

@@ -2,7 +2,7 @@ menu "OpenThread Sleepy Example"
config OPENTHREAD_AUTO_START
bool 'Enable the automatic start mode.'
default False
default n
help
If enabled, the Openthread Device will create or connect to thread network with pre-configured
network parameters automatically. Otherwise, user need to configure Thread via CLI command manually.

View File

@@ -2,7 +2,7 @@ menu "OpenThread TREL Example"
config OPENTHREAD_AUTO_START
bool 'Enable the automatic start mode.'
default False
default n
help
If enabled, the Openthread Device will create or connect to thread network with pre-configured
network parameters automatically. Otherwise, user need to configure Thread via CLI command manually.