forked from espressif/esp-idf
Merge branch 'feat/c5_cert_changes' into 'master'
feat(openthread): default border routing config for end devices See merge request espressif/esp-idf!38714
This commit is contained in:
@@ -263,6 +263,13 @@ menu "OpenThread"
|
|||||||
help
|
help
|
||||||
Select this option to enable link metrics feature
|
Select this option to enable link metrics feature
|
||||||
|
|
||||||
|
config OPENTHREAD_BORDER_AGENT_ENABLE
|
||||||
|
bool "Enable border agent feature"
|
||||||
|
default y if OPENTHREAD_BORDER_ROUTER
|
||||||
|
default n if !OPENTHREAD_BORDER_ROUTER
|
||||||
|
help
|
||||||
|
Select this option to enable border agent feature
|
||||||
|
|
||||||
config OPENTHREAD_MACFILTER_ENABLE
|
config OPENTHREAD_MACFILTER_ENABLE
|
||||||
bool "Enable mac filter feature"
|
bool "Enable mac filter feature"
|
||||||
default n
|
default n
|
||||||
|
@@ -2,12 +2,14 @@
|
|||||||
archive: libopenthread.a
|
archive: libopenthread.a
|
||||||
entries:
|
entries:
|
||||||
if OPENTHREAD_CSL_ENABLE = y || OPENTHREAD_LINK_METRICS = y:
|
if OPENTHREAD_CSL_ENABLE = y || OPENTHREAD_LINK_METRICS = y:
|
||||||
mesh_forwarder (noflash_text)
|
csl_tx_scheduler (noflash)
|
||||||
mac_frame (noflash_text)
|
link_metrics (noflash)
|
||||||
csl_tx_scheduler (noflash_text)
|
link_quality (noflash)
|
||||||
link_metrics (noflash_text)
|
mac (noflash)
|
||||||
mac (noflash_text)
|
mac_frame (noflash)
|
||||||
sub_mac (noflash_text)
|
mesh_forwarder (noflash)
|
||||||
|
radio (noflash)
|
||||||
|
sub_mac (noflash)
|
||||||
|
|
||||||
if OPENTHREAD_RCP_SPI = y:
|
if OPENTHREAD_RCP_SPI = y:
|
||||||
ncp_spi (noflash_text)
|
ncp_spi (noflash)
|
||||||
|
@@ -367,19 +367,24 @@
|
|||||||
#endif
|
#endif
|
||||||
#define OPENTHREAD_CONFIG_MAC_MAX_CSMA_BACKOFFS_DIRECT CONFIG_OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT
|
#define OPENTHREAD_CONFIG_MAC_MAX_CSMA_BACKOFFS_DIRECT CONFIG_OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT
|
||||||
|
|
||||||
/*----The following options set fixed default values but can be overridden by the user header file.----*/
|
|
||||||
|
|
||||||
#if CONFIG_OPENTHREAD_BORDER_ROUTER
|
|
||||||
/**
|
/**
|
||||||
* @def OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
|
* @def OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
|
||||||
*
|
*
|
||||||
* Define to 1 to enable Border Agent support.
|
* Define to 1 to enable Border Agent support.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
#ifndef OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
|
#ifdef OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
|
||||||
|
#error `OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE` is redefined.
|
||||||
|
#endif
|
||||||
|
#if CONFIG_OPENTHREAD_BORDER_AGENT_ENABLE
|
||||||
#define OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE 1
|
#define OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE 1
|
||||||
|
#else
|
||||||
|
#define OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*----The following options set fixed default values but can be overridden by the user header file.----*/
|
||||||
|
|
||||||
|
#if CONFIG_OPENTHREAD_BORDER_ROUTER
|
||||||
/**
|
/**
|
||||||
* @def OPENTHREAD_CONFIG_BORDER_AGENT_ID_ENABLE
|
* @def OPENTHREAD_CONFIG_BORDER_AGENT_ID_ENABLE
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user