mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-14 10:21:49 +00:00
tool/create_packet_log: support ISO packets
This commit is contained in:
parent
bf2045ffcf
commit
755c0732eb
@ -146,6 +146,14 @@ with open (outfile, 'wb') as fout:
|
||||
if rest:
|
||||
handleHexPacket(fout, timestamp, 9, rest)
|
||||
continue
|
||||
rest = chop(line,'ISO => ')
|
||||
if rest:
|
||||
handleHexPacket(fout, timestamp, 0x0c, rest)
|
||||
continue
|
||||
rest = chop(line,'ISO <= ')
|
||||
if rest:
|
||||
handleHexPacket(fout, timestamp, 0x0d, rest)
|
||||
continue
|
||||
rest = chop(line,'LOG -- ')
|
||||
if rest:
|
||||
line = rest
|
||||
|
Loading…
x
Reference in New Issue
Block a user