From 29a4f381da7eff0b1011672289959fdb087ca99a Mon Sep 17 00:00:00 2001 From: Adam Shapiro Date: Tue, 10 Dec 2024 16:42:40 -0500 Subject: [PATCH] Output raw format by default, don't filter out any binary data. --- python/fusion_engine_client/applications/p1_capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/fusion_engine_client/applications/p1_capture.py b/python/fusion_engine_client/applications/p1_capture.py index 9f267bdc..f20cb69b 100755 --- a/python/fusion_engine_client/applications/p1_capture.py +++ b/python/fusion_engine_client/applications/p1_capture.py @@ -91,7 +91,7 @@ def main(): file_group = parser.add_argument_group('File Capture') file_group.add_argument( - '-f', '--output-format', default='p1log', choices=('p1log', 'raw', 'csv'), + '-f', '--output-format', default='raw', choices=('p1log', 'raw', 'csv'), help="""\ The format of the file to be generated when --output is enabled: - p1log - Create a *.p1log file containing only FusionEngine messages (default)