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

18 lines
529 B
Java
Raw Normal View History

2023-07-30 16:52:39 -07:00
package com.rusefi.can;
import com.rusefi.can.analysis.ByteRateOfChangeReports;
import com.rusefi.can.reader.ReaderType;
import com.rusefi.can.reader.ReaderTypeHolder;
import java.io.IOException;
public class KiaSandbox {
public static void main(String[] args) throws IOException {
2023-10-14 09:17:23 -07:00
ReaderTypeHolder.INSTANCE.type = ReaderType.PCAN;
2023-07-30 16:52:39 -07:00
String inputFolderName = "C:\\stuff\\rusefi_documentation\\OEM-Docs\\Kia\\2013-CAN-logs";
ByteRateOfChangeReports.scanInputFolder(inputFolderName, ".trc");
}
}