We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e7e987 commit eae81eaCopy full SHA for eae81ea
examples/exampleMerge.py
@@ -34,7 +34,7 @@
34
canmatrix.copy.copy_frame(canmatrix.ArbitrationId(100), db2, db3)
35
36
# Copy frame "Engine_123" from first CAN-Matrix to target-Matrix
37
-canmatrix.copy.copy_frame("Engine_123", db1, db3)
+canmatrix.copy.copy_frame(canmatrix.ArbitrationId(200), db1, db3)
38
39
# Copy ECU (with all Frames) "Gateway" from first CAN-Matrix to target-Matrix
40
canmatrix.copy.copy_ecu_with_frames("Gateway", db1, db3)
@@ -49,4 +49,4 @@
49
# export the new (target)-Matrix for example as .dbc:
50
#
51
52
-canmatrix.formats.dumpp(db3, "target.dbc")
+canmatrix.formats.dumpp({"":db3}, "target.dbc")
0 commit comments