This commit is contained in:
rusefillc 2023-09-22 14:06:28 -04:00
parent 17d1495ac2
commit a65745f07b
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package com.rusefi.can;
import com.rusefi.can.analysis.ByteRateOfChangeReports;
import com.rusefi.can.reader.CANLineReader;
import com.rusefi.can.reader.ReaderType;
import com.rusefi.can.reader.ReaderTypeHolder;
import com.rusefi.can.reader.impl.PcanTrcReader2_0;
import java.io.IOException;
import java.util.List;
public class CanAmMG1Sandbox {
public static void main(String[] args) throws IOException {
ReaderTypeHolder.INSTANCE.type = ReaderType.PCAN1_1;
CANLineReader reader = PcanTrcReader2_0.INSTANCE;
String inputFolderName = "C:\\stuff\\rusefi_documentation\\OEM-Docs\\CanAm\\maverick-x3-xrs-turbo-rr-max-2021\\";
// String revvingCltWentUp = inputFolderName + "engine-revving-CLT-increased.trc";
// List<CANPacket> idling = reader.readFile(revvingCltWentUp);
//printStats(idling, "IDLING");
ByteRateOfChangeReports.scanInputFolder(inputFolderName, ".trc");
}
}