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
committed by BOT
parent 71c437767f
commit 14bc7c01ea
13 changed files with 159 additions and 11 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)