Skip to content

Commit

Permalink
malibu
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc authored and rusefillc committed Nov 7, 2024
1 parent c9580ea commit 86ea0a5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions reader/src/test/java/com/rusefi/can/MalibuSandbox.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package com.rusefi.can;

import com.rusefi.can.reader.dbc.DbcFile;

import java.io.IOException;

public class MalibuSandbox {
public static void main(String[] args) throws IOException {
String inputFolderName = "C:\\stuff\\gen5-private\\2013-malibu\\can-traces";

Launcher.dbcFileName = "C:\\stuff\\gen5-private\\2013-malibu\\malibu.dbc";

// DbcFile dbc = DbcFile.readFromFile(Launcher.dbcFileName);
// AlwaysSameScanner.run(inputFolderName, dbc);
// AlwaysSameScanner.report(dbc);


Launcher.main(new String[]{
inputFolderName,
Launcher.DBC_FILENAME_PROPERTY,
Launcher.dbcFileName,
});
}
}

0 comments on commit 86ea0a5

Please sign in to comment.