You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [arxml] add some basic support for flexray and ethernet data
* extract most of relevant flexray info (#432)
not yet integraded - only extracted by now
* prove of concept for flexray dump (#432)
* starting rework ARXML
* add xlsxwriter to test deps
* add pyyaml to test-reqs
* Update requirements.test.py3.txt
* fix so that tests work again
* remove py3.4 add py3.8
* disable py34 test - enable py38 test
* disable py34
* remove py3.4
* remove py8 warnings
* fix dbc for py8
* fix for #484
buggy ARXMLs with no System-Signals referenced
Copy file name to clipboardexpand all lines: src/canmatrix/cli/convert.py
+4-1
Original file line number
Diff line number
Diff line change
@@ -77,8 +77,11 @@ def get_formats():
77
77
@click.option('--merge', help="merge additional can databases.\nSyntax: --merge filename[:ecu=SOMEECU][:frame=FRAME1][:frame=FRAME2],filename2")
78
78
# arxml switches
79
79
@click.option('--arxmlIgnoreClusterInfo/--no-arxmlIgnoreClusterInfo', 'arxmlIgnoreClusterInfo', default=False, help="Ignore any can cluster info from arxml; Import all frames in one matrix\ndefault False")
@click.option('--arxmlExportVersion', 'arVersion', default="3.2.3", help="Set output AUTOSAR version\ncurrently only 3.2.3 and 4.1.0 are supported\ndefault 3.2.3")
82
+
@click.option('--arxmlFlexray/--no-arxmlFlexray', 'decode_flexray', default=False, help="EXPERIMENTAL: import basic flexray data from ARXML")
83
+
@click.option('--arxmlEthernet/--no-arxmlFlexray', 'decode_ethernet', default=False, help="EXPERIMENTAL: import basic ethernet data from ARXML")
84
+
82
85
# dbc switches
83
86
@click.option('--dbcImportEncoding', 'dbcImportEncoding', default="iso-8859-1", help="Import charset of dbc (relevant for units), maybe utf-8\ndefault iso-8859-1")
84
87
@click.option('--dbcImportCommentEncoding', 'dbcImportCommentEncoding', default="iso-8859-1", help="Import charset of Comments in dbc\ndefault iso-8859-1")
0 commit comments