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

WIP SSED fixes GSDK 4.3.2 #207

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
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
#define OPENTHREAD_CONFIG_MAC_CSL_RECEIVER_ENABLE 1
#define OPENTHREAD_CONFIG_MAC_CSL_AUTO_SYNC_ENABLE 1
#define OPENTHREAD_CONFIG_PLATFORM_USEC_TIMER_ENABLE 1
#define OPENTHREAD_CONFIG_CHILD_SUPERVISION_CHECK_TIMEOUT 0
#define SL_OPENTHREAD_CSL_TX_UNCERTAINTY 200

#endif // SL_ICD_ENABLED

Expand Down
4 changes: 2 additions & 2 deletions scripts/examples/gn_silabs_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if [ "$#" == "0" ]; then
Must also set chip_openthread_ftd=false
enable_synchronized_sed
Enable Synchronized Sleepy end device. (Default false)
Must also set enable_sleepy_device=true chip_openthread_ftd=false
Must also set chip_enable_icd_server=true chip_openthread_ftd=false
use_rs9116
Build wifi example with extension board rs9116. (Default false)
use_SiWx917
Expand Down Expand Up @@ -192,7 +192,7 @@ else
shift
;;
--ssed)
optArgs+="enable_sleepy_device=true enable_synchronized_sed=true chip_openthread_ftd=false "
optArgs+="chip_enable_icd_server=true enable_synchronized_sed=true chip_openthread_ftd=false "
shift
;;
--low-power)
Expand Down
2 changes: 2 additions & 0 deletions third_party/silabs/efr32_sdk.gni
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,8 @@ template("efr32_sdk") {
"OPENTHREAD_CONFIG_MAC_CSL_RECEIVER_ENABLE=1",
"OPENTHREAD_CONFIG_MAC_CSL_AUTO_SYNC_ENABLE=1",
"OPENTHREAD_CONFIG_PLATFORM_USEC_TIMER_ENABLE=1",
"OPENTHREAD_CONFIG_CHILD_SUPERVISION_CHECK_TIMEOUT=0",
"SL_OPENTHREAD_CSL_TX_UNCERTAINTY=200",
"OPENTHREAD_CONFIG_CSL_TIMEOUT=${sl_ot_csl_timeout_sec}",
]
}
Expand Down