Skip to content

Commit

Permalink
manifest: openthread: Regular openthread upmerge to 6d55738
Browse files Browse the repository at this point in the history
Openthread upmerge to `6d55738`. Includes implementing of:
- `OPENTHREAD_CONFIG_RADIO_STATS_ENABLE`
- `OPENTHREAD_CONFIG_BORDER_ROUTING_DHCP6_PD_ENABLE`

Signed-off-by: Przemyslaw Bida <[email protected]>
  • Loading branch information
Przemyslaw Bida authored and carlescufi committed Jun 23, 2023
1 parent 936dc5b commit f940a5a
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
6 changes: 6 additions & 0 deletions modules/openthread/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ else()
set(OT_BORDER_ROUTING_COUNTERS OFF CACHE BOOL "Enable Border routing counters" FORCE)
endif()

if(CONFIG_OPENTHREAD_BORDER_ROUTING_DHCP6_PD)
set(OT_BORDER_ROUTING_DHCP6_PD ON CACHE BOOL "DHCPv6-PD support in border routing" FORCE)
else()
set(OT_BORDER_ROUTING_DHCP6_PD OFF CACHE BOOL "DHCPv6-PD support in border routing" FORCE)
endif()

if(CONFIG_OPENTHREAD_CHANNEL_MANAGER)
set(OT_CHANNEL_MANAGER ON CACHE BOOL "Enable channel manager support" FORCE)
else()
Expand Down
6 changes: 6 additions & 0 deletions modules/openthread/Kconfig.features
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ config OPENTHREAD_BORDER_ROUTING
config OPENTHREAD_BORDER_ROUTING_COUNTERS
bool "Border routing counters support"

config OPENTHREAD_BORDER_ROUTING_DHCP6_PD
bool "DHCPv6-PD support in border routing"

config OPENTHREAD_CHANNEL_MONITOR
bool "Channel monitor support"

Expand Down Expand Up @@ -247,6 +250,9 @@ config OPENTHREAD_POWER_SUPPLY
default "EXTERNAL_UNSTABLE" if OPENTHREAD_POWER_SUPPLY_EXTERNAL_UNSTABLE
default ""

config OPENTHREAD_RADIO_STATS
bool "Support for Radio Statistics"

config OPENTHREAD_RAW
bool "Raw Link support"

Expand Down
11 changes: 11 additions & 0 deletions modules/openthread/platform/openthread-core-zephyr-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -446,4 +446,15 @@
#define OPENTHREAD_CONFIG_PLATFORM_POWER_CALIBRATION_ENABLE 0
#endif


/**
* @def OPENTHREAD_CONFIG_RADIO_STATS
*
* Enable support for Radio Statistics.
*
*/
#ifdef CONFIG_OPENTHREAD_RADIO_STATS
#define OPENTHREAD_CONFIG_RADIO_STATS_ENABLE CONFIG_OPENTHREAD_RADIO_STATS
#endif

#endif /* OPENTHREAD_CORE_ZEPHYR_CONFIG_H_ */
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ manifest:
revision: c904a01d4a882bcbb39987e0e2ce5308f49ac7ad
path: modules/lib/open-amp
- name: openthread
revision: d9abe3071c0131a4adb5d7e7451319b735e6d855
revision: 6d557383e8bc8654f813674e8631c2e56b8e70d0
path: modules/lib/openthread
- name: picolibc
path: modules/lib/picolibc
Expand Down

0 comments on commit f940a5a

Please sign in to comment.