Make sdlog2_dump.py compatible with APM .bin files

sdlog2_dump.py didn't know what to do with data types "d" and was causing errors when trying to dump APM .bin files to .csv.
This commit is contained in:
AndersonRayner 2016-03-22 08:50:18 +11:00 committed by Lorenz Meier
parent 79426c32c7
commit 13c611462e
1 changed files with 1 additions and 0 deletions

View File

@ -48,6 +48,7 @@ class SDLog2Parser:
"i": ("i", None),
"I": ("I", None),
"f": ("f", None),
"d": ("d", None),
"n": ("4s", None),
"N": ("16s", None),
"Z": ("64s", None),