can-log-tools/reader/src/test/java/com/rusefi/can/RallySandbox.java

16 lines
444 B
Java
Raw Normal View History

2024-02-09 19:47:08 -08:00
package com.rusefi.can;
import java.io.IOException;
public class RallySandbox {
public static void main(String[] args) throws IOException {
Launcher.main(new String[]{
"C:\\stuff\\rusefi_documentation\\OEM-Docs\\Mitsubishi\\2009-rallyart",
Launcher.FILENAME_SUFFIX_PROPERTY,
".log",
2024-02-09 20:00:42 -08:00
// Launcher.FILENAME_FILTER_PROPERTY,
// "auto",
2024-02-09 19:47:08 -08:00
});
}
}