mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-06 14:14:33 +02:00
openthread: update openthread submodule
openthread: add srp client enable option for openthread component ieee802154: set ieee802154 default PTI to 6
This commit is contained in:
Submodule components/esp_phy/lib updated: 1174878441...0ae4bb88c0
Submodule components/ieee802154/lib updated: d7d5f59259...9f5363e97a
@@ -77,6 +77,14 @@ menu "OpenThread"
|
||||
Select this option to enable Joiner in OpenThread. This allows a device to join the Thread network with a
|
||||
pre-shared key using the Thread commissioning protocol.
|
||||
|
||||
config OPENTHREAD_SRP_CLIENT
|
||||
bool "Enable SRP Client"
|
||||
depends on OPENTHREAD_ENABLED
|
||||
default n
|
||||
help
|
||||
Select this option to enable SRP Client in OpenThread. This allows a device to register SRP services to SRP
|
||||
Server.
|
||||
|
||||
config OPENTHREAD_BORDER_ROUTER
|
||||
bool "Enable Border Router"
|
||||
depends on OPENTHREAD_ENABLED
|
||||
|
Submodule components/openthread/lib updated: 1f6e937b50...6cb8a43666
Submodule components/openthread/openthread updated: a662c32eb0...71bc37bbc3
@@ -126,6 +126,16 @@
|
||||
#define OPENTHREAD_CONFIG_HEAP_EXTERNAL_ENABLE 1
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_TCP_ENABLE
|
||||
*
|
||||
* Define to 0 to disable TCP
|
||||
*
|
||||
*/
|
||||
#ifndef OPENTHREAD_CONFIG_TCP_ENABLE
|
||||
#define OPENTHREAD_CONFIG_TCP_ENABLE 0
|
||||
#endif
|
||||
|
||||
#if CONFIG_OPENTHREAD_BORDER_ROUTER
|
||||
|
||||
/**
|
||||
@@ -375,6 +385,16 @@
|
||||
#define OPENTHREAD_CONFIG_DIAG_ENABLE 1
|
||||
#endif
|
||||
|
||||
#if CONFIG_OPENTHREAD_SRP_CLIENT
|
||||
#ifndef OPENTHREAD_CONFIG_ECDSA_ENABLE
|
||||
#define OPENTHREAD_CONFIG_ECDSA_ENABLE 1
|
||||
#endif
|
||||
|
||||
#ifndef OPENTHREAD_CONFIG_SRP_CLIENT_ENABLE
|
||||
#define OPENTHREAD_CONFIG_SRP_CLIENT_ENABLE 1
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if CONFIG_OPENTHREAD_FTD
|
||||
#define OPENTHREAD_FTD 1
|
||||
#elif CONFIG_OPENTHREAD_MTD
|
||||
|
Reference in New Issue
Block a user