@@ -109,13 +109,28 @@ def sequenceMatch(self, string, patterns):
109
109
110
110
def connect_to_thread_network (self ):
111
111
self .logger .info ("Running commands to form Thread network" )
112
+ time .sleep (3 ) # Avoid sending commands at very beginning.
113
+ otInitCommands = [
114
+ "ot-ctl thread stop" ,
115
+ "ot-ctl ifconfig down" ,
116
+ "ot-ctl dataset init new" ,
117
+ "ot-ctl dataset panid 0x1234" ,
118
+ "ot-ctl dataset networkname OpenThread" ,
119
+ "ot-ctl dataset channel 13" ,
120
+ "ot-ctl dataset extpanid dead00beef00cafe" ,
121
+ "ot-ctl dataset meshlocalprefix \" fd01:2345:6789:0abc::\" " ,
122
+ "ot-ctl dataset masterkey 00112233445566778899aabbccddeeff" ,
123
+ "ot-ctl dataset commit active" ,
124
+ "ot-ctl dataset active" , # This will emit an output of dataset in flask.log
125
+ "ot-ctl ifconfig up" ,
126
+ "ot-ctl thread start" ,
127
+ ]
112
128
for device in self .non_ap_devices :
113
- self .execute_device_cmd (device ['id' ],
114
- "bash -c 'ot-ctl panid 0x1234 && \
115
- ot-ctl ifconfig up && \
116
- ot-ctl thread start'" )
129
+ # Set default openthread provisioning
130
+ for cmd in otInitCommands :
131
+ self .execute_device_cmd (device ['id' ], cmd )
117
132
self .logger .info ("Waiting for Thread network to be formed..." )
118
- time .sleep (10 )
133
+ time .sleep (15 )
119
134
roles = set ()
120
135
for device in self .non_ap_devices :
121
136
reply = self .execute_device_cmd (device ['id' ], 'ot-ctl state' )
0 commit comments