|
|
@@ -177,6 +177,12 @@ menu "OpenThread"
|
|
|
commissioner in the Thread network. A commissioner checks the pre-shared key from a joining device with
|
|
|
the Thread commissioning protocol and shares the network parameter with the joining device upon success.
|
|
|
|
|
|
+ config OPENTHREAD_COMM_MAX_JOINER_ENTRIES
|
|
|
+ int "The size of max commissioning joiner entries"
|
|
|
+ depends on OPENTHREAD_COMMISSIONER
|
|
|
+ default 2
|
|
|
+ range 2 50
|
|
|
+
|
|
|
config OPENTHREAD_JOINER
|
|
|
bool "Enable Joiner"
|
|
|
depends on OPENTHREAD_ENABLED
|
|
|
@@ -193,6 +199,14 @@ menu "OpenThread"
|
|
|
Select this option to enable SRP Client in OpenThread. This allows a device to register SRP services to SRP
|
|
|
Server.
|
|
|
|
|
|
+ config OPENTHREAD_SRP_CLIENT_MAX_SERVICES
|
|
|
+ int "Specifies number of service entries in the SRP client service pool"
|
|
|
+ depends on OPENTHREAD_SRP_CLIENT
|
|
|
+ default 5
|
|
|
+ range 2 20
|
|
|
+ help
|
|
|
+ Set the max buffer size of service entries in the SRP client service pool.
|
|
|
+
|
|
|
config OPENTHREAD_DNS_CLIENT
|
|
|
bool "Enable DNS Client"
|
|
|
depends on OPENTHREAD_ENABLED
|
|
|
@@ -221,6 +235,24 @@ menu "OpenThread"
|
|
|
range 10 100 if !OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT
|
|
|
range 10 8191 if OPENTHREAD_PLATFORM_MSGPOOL_MANAGEMENT
|
|
|
|
|
|
+ config OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE
|
|
|
+ int "The size of openthread spinel rx frame buffer"
|
|
|
+ depends on OPENTHREAD_ENABLED
|
|
|
+ default 1024
|
|
|
+ range 512 8192
|
|
|
+
|
|
|
+ config OPENTHREAD_MLE_MAX_CHILDREN
|
|
|
+ int "The size of max MLE children entries"
|
|
|
+ depends on OPENTHREAD_ENABLED
|
|
|
+ default 10
|
|
|
+ range 5 50
|
|
|
+
|
|
|
+ config OPENTHREAD_TMF_ADDR_CACHE_ENTRIES
|
|
|
+ int "The size of max TMF address cache entries"
|
|
|
+ depends on OPENTHREAD_ENABLED
|
|
|
+ default 20
|
|
|
+ range 5 50
|
|
|
+
|
|
|
config OPENTHREAD_DNS64_CLIENT
|
|
|
bool "Use dns64 client"
|
|
|
depends on OPENTHREAD_ENABLED && LWIP_IPV4
|
|
|
@@ -264,6 +296,26 @@ menu "OpenThread"
|
|
|
help
|
|
|
Select this option to enable CSL feature
|
|
|
|
|
|
+ config OPENTHREAD_XTAL_ACCURACY
|
|
|
+ int "The accuracy of the XTAL"
|
|
|
+ default 130
|
|
|
+ help
|
|
|
+ The device's XTAL accuracy, in ppm.
|
|
|
+
|
|
|
+ config OPENTHREAD_CSL_ACCURACY
|
|
|
+ int "The current CSL rx/tx scheduling drift, in units of ± ppm"
|
|
|
+ depends on OPENTHREAD_CSL_ENABLE
|
|
|
+ default 1
|
|
|
+ help
|
|
|
+ The current accuracy of the clock used for scheduling CSL operations
|
|
|
+
|
|
|
+ config OPENTHREAD_CSL_UNCERTAIN
|
|
|
+ int "The CSL Uncertainty in units of 10 us."
|
|
|
+ depends on OPENTHREAD_CSL_ENABLE
|
|
|
+ default 1
|
|
|
+ help
|
|
|
+ The fixed uncertainty of the Device for scheduling CSL Transmissions in units of 10 microseconds.
|
|
|
+
|
|
|
config OPENTHREAD_CSL_DEBUG_ENABLE
|
|
|
bool "Enable CSL debug"
|
|
|
depends on OPENTHREAD_CSL_ENABLE
|