feat(openthread): update openthread submodule and border router lib

This commit is contained in:
Xu Si Yu
2024-10-29 11:56:16 +08:00
parent 7ac7939f52
commit 78a4ea29f3
12 changed files with 158 additions and 10 deletions

View File

@@ -144,7 +144,7 @@ def changeDeviceRole(dut:IdfDut, role:str) -> None:
def getDataset(dut:IdfDut) -> str:
clean_buffer(dut)
execute_command(dut, 'dataset active -x')
dut_data = dut.expect(r'\n(\w{212})\r', timeout=5)[1].decode()
dut_data = dut.expect(r'\n(\w+)\r', timeout=5)[1].decode()
return str(dut_data)