Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net: openthread: upmerge to 6edb06e #65005

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/openthread/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,12 @@ else()
set(OT_CSL_RECEIVER OFF CACHE BOOL "Enable CSL receiver feature for Thread 1.2" FORCE)
endif()

if(CONFIG_OPENTHREAD_CSL_RECEIVER_LOCAL_TIME_SYNC)
set(OT_CSL_RECEIVER_LOCAL_TIME_SYNC ON CACHE BOOL "Use local time for CSL sync" FORCE)
else()
set(OT_CSL_RECEIVER_LOCAL_TIME_SYNC OFF CACHE BOOL "Use local time for CSL sync" FORCE)
endif()

if(CONFIG_OPENTHREAD_DATASET_UPDATER)
set(OT_DATASET_UPDATER ON CACHE BOOL "Enable Dataset updater" FORCE)
else()
Expand Down
7 changes: 7 additions & 0 deletions modules/openthread/Kconfig.features
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@ config OPENTHREAD_CSL_RECEIVER
help
Enable CSL Receiver support for Thread 1.2

config OPENTHREAD_CSL_RECEIVER_LOCAL_TIME_SYNC
bool "Use local time for CSL synchronization"
help
Use host time rather than radio platform time to track elapsed time
since last CSL synchronization. This reduces the usage of radio API
calls, and it is useful for platforms in which those are costly.

config OPENTHREAD_DEVICE_PROP_LEADER_WEIGHT
bool "Device props for leader weight"
default n if (OPENTHREAD_THREAD_VERSION_1_1 || \
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ manifest:
revision: 214f9fc1539f8e5937c0474cb6ee29b6dcb2d4b8
path: modules/lib/open-amp
- name: openthread
revision: d62167ee34b091e7025c9ec2820aae71e17a3944
revision: 6edb06e4e0472411200ce2a084a783eaf3faffe3
path: modules/lib/openthread
- name: percepio
path: modules/debug/percepio
Expand Down
Loading