diff --git a/tool/create_packet_log.py b/tool/create_packet_log.py index c8ba81f55..14b36322f 100755 --- a/tool/create_packet_log.py +++ b/tool/create_packet_log.py @@ -130,6 +130,14 @@ with open (outfile, 'wb') as fout: if rest: handleHexPacket(fout, timestamp, 3, rest) continue + rest = chop(line,'SCO => ') + if rest: + handleHexPacket(fout, timestamp, 8, rest) + continue + rest = chop(line,'SCO <= ') + if rest: + handleHexPacket(fout, timestamp, 9, rest) + continue rest = chop(line,'LOG -- ') if rest: line = rest