Skip to content

Commit

Permalink
samples: openthread: fix THCI for Thread 1.3/1.4
Browse files Browse the repository at this point in the history
Fix incorrect default value of CSL period in 1.3/1.4 THCI

Signed-off-by: Maciej Baczmanski <[email protected]>
  • Loading branch information
maciejbaczmanski committed Jan 10, 2025
1 parent e85d400 commit 0cc5e50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1543,7 +1543,7 @@ def setDefaultValues(self):
# self.sedPollingRate = ModuleHelper.Default_Harness_SED_Polling_Rate
self.__sedPollPeriod = 3 * 1000 # in milliseconds
self.ssedTimeout = 30 # in seconds
self.cslPeriod = 3125 # in milliseconds
self.cslPeriod = 500 # in milliseconds
self.deviceRole = None
self.provisioningUrl = ""
self.hasActiveDatasetToCommit = False
Expand Down

0 comments on commit 0cc5e50

Please sign in to comment.