aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorAnton Babushkin <anton.babushkin@me.com>2013-06-02 12:22:43 +0400
committerAnton Babushkin <anton.babushkin@me.com>2013-06-02 12:22:43 +0400
commit6e5e1ff817d11d84b55b63dd482f3205e0899c55 (patch)
tree4ff98506f407400da4e6d83548cdd6976e3e964d /Tools
parentbd8bafb347e9b020ef78ffc2b534161d3c3b71bd (diff)
downloadpx4-firmware-6e5e1ff817d11d84b55b63dd482f3205e0899c55.tar.gz
px4-firmware-6e5e1ff817d11d84b55b63dd482f3205e0899c55.tar.bz2
px4-firmware-6e5e1ff817d11d84b55b63dd482f3205e0899c55.zip
sdlog2_dump.py comments and version updated
Diffstat (limited to 'Tools')
-rw-r--r--Tools/sdlog2_dump.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/sdlog2_dump.py b/Tools/sdlog2_dump.py
index e40d5c1b5..318f72971 100644
--- a/Tools/sdlog2_dump.py
+++ b/Tools/sdlog2_dump.py
@@ -2,10 +2,12 @@
"""Dump binary log generated by sdlog2 or APM as CSV
-Usage: python sdlog2_dump.py <log.bin> [-v] [-d delimiter] [-n null] [-m MSG[.field1,field2,...]]
+Usage: python sdlog2_dump.py <log.bin> [-v] [-e] [-d delimiter] [-n null] [-m MSG[.field1,field2,...]]
-v Use plain debug output instead of CSV.
+ -e Recover from errors.
+
-d Use "delimiter" in CSV. Default is ",".
-n Use "null" as placeholder for empty values in CSV. Default is empty.
@@ -15,7 +17,7 @@ Usage: python sdlog2_dump.py <log.bin> [-v] [-d delimiter] [-n null] [-m MSG[.fi
Multiple -m options allowed."""
__author__ = "Anton Babushkin"
-__version__ = "1.1"
+__version__ = "1.2"
import struct, sys