Skip to content

Commit

Permalink
Merge branch 'fix/disable_border_agent_default_v5_2' into 'release/v5.2'
Browse files Browse the repository at this point in the history
fix(openthread): Disable Border Agent features by default(v5.2)

See merge request espressif/esp-idf!35552
  • Loading branch information
chshu committed Dec 11, 2024
2 parents f238830 + 219ae80 commit 2ad3c78
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,16 @@
/*----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
*
* Define to 1 to enable Border Agent support.
*
*/
#ifndef OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
#define OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE 1
#endif

/**
* @def OPENTHREAD_CONFIG_BORDER_AGENT_ID_ENABLE
*
Expand Down Expand Up @@ -451,16 +461,6 @@
#define OPENTHREAD_CONFIG_BORDER_ROUTER_ENABLE 1
#endif

/**
* @def OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
*
* Define to 1 to enable Border Agent support.
*
*/
#ifndef OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE
#define OPENTHREAD_CONFIG_BORDER_AGENT_ENABLE 1
#endif

#if !CONFIG_OPENTHREAD_RADIO_NATIVE
/**
* @def OPENTHREAD_SPINEL_CONFIG_COMPATIBILITY_ERROR_CALLBACK_ENABLE
Expand Down

0 comments on commit 2ad3c78

Please sign in to comment.