Skip to content

Commit 0cc5e50

Browse files
samples: openthread: fix THCI for Thread 1.3/1.4
Fix incorrect default value of CSL period in 1.3/1.4 THCI Signed-off-by: Maciej Baczmanski <[email protected]>
1 parent e85d400 commit 0cc5e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/openthread/cli/harness-thci/nRF_Connect_SDK_13_14.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ def setDefaultValues(self):
15431543
# self.sedPollingRate = ModuleHelper.Default_Harness_SED_Polling_Rate
15441544
self.__sedPollPeriod = 3 * 1000 # in milliseconds
15451545
self.ssedTimeout = 30 # in seconds
1546-
self.cslPeriod = 3125 # in milliseconds
1546+
self.cslPeriod = 500 # in milliseconds
15471547
self.deviceRole = None
15481548
self.provisioningUrl = ""
15491549
self.hasActiveDatasetToCommit = False

0 commit comments

Comments
 (0)