mirror of https://github.com/ArduPilot/ardupilot
LogAnalyzer: write \xff EOF assumption to stderr
This commit is contained in:
parent
cf4435989e
commit
c2030de4ec
|
@ -616,7 +616,7 @@ class DataflashLog(object):
|
|||
raise ValueError(h)
|
||||
else:
|
||||
if h.head1 == 0xff and h.head2 == 0xff and h.msgid == 0xff:
|
||||
print("Assuming EOF due to dataflash block tail filled with \\xff... (offset={off})".format(off=offset))
|
||||
print("Assuming EOF due to dataflash block tail filled with \\xff... (offset={off})".format(off=offset), file=sys.stderr)
|
||||
break
|
||||
|
||||
if h.msgid in self._formats:
|
||||
|
|
Loading…
Reference in New Issue