mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 23:48:11 +01:00
OpenThread: Disable the CLI since it can cause watchdog reset failures when sharing the same UART as the logger
This commit is contained in:
parent
5e20e55fee
commit
a8f1753e17
1 changed files with 3 additions and 0 deletions
|
@ -34,6 +34,9 @@ def set_sdkconfig_options(config):
|
|||
add_idf_sdkconfig_option("CONFIG_IEEE802154_ENABLED", True)
|
||||
add_idf_sdkconfig_option("CONFIG_OPENTHREAD_RADIO_NATIVE", True)
|
||||
|
||||
# There is a conflict if the logger's uart also uses the default UART, which is seen as a watchdog failure on "ot_cli"
|
||||
add_idf_sdkconfig_option("CONFIG_OPENTHREAD_CLI", False)
|
||||
|
||||
add_idf_sdkconfig_option("CONFIG_OPENTHREAD_ENABLED", True)
|
||||
add_idf_sdkconfig_option("CONFIG_OPENTHREAD_NETWORK_PANID", config[CONF_PANID])
|
||||
add_idf_sdkconfig_option("CONFIG_OPENTHREAD_NETWORK_CHANNEL", config[CONF_CHANNEL])
|
||||
|
|
Loading…
Reference in a new issue