ByteRateOfChangeReports.filter
This commit is contained in:
parent
735ccbb04f
commit
cd4ffd6729
|
@ -1,5 +1,6 @@
|
||||||
package com.rusefi.can;
|
package com.rusefi.can;
|
||||||
|
|
||||||
|
import com.rusefi.can.analysis.ByteRateOfChangeReports;
|
||||||
import com.rusefi.can.reader.impl.ReadFullVagDbc;
|
import com.rusefi.can.reader.impl.ReadFullVagDbc;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -10,6 +11,11 @@ public class VagB6Sandbox {
|
||||||
|
|
||||||
String inputFolderName = "C:\\stuff\\rusefi_documentation\\OEM-Docs\\VAG\\2006-Passat-B6\\";
|
String inputFolderName = "C:\\stuff\\rusefi_documentation\\OEM-Docs\\VAG\\2006-Passat-B6\\";
|
||||||
|
|
||||||
|
ByteRateOfChangeReports.filter = dbcField -> {
|
||||||
|
String name = dbcField.getName();
|
||||||
|
return name.startsWith("CHECKSUM_") || name.startsWith("COUNTER_");
|
||||||
|
};
|
||||||
|
|
||||||
Launcher.main(new String[]{inputFolderName,
|
Launcher.main(new String[]{inputFolderName,
|
||||||
Launcher.FILENAME_FILTER_PROPERTY,
|
Launcher.FILENAME_FILTER_PROPERTY,
|
||||||
"passat-back-and-forth-60-seconds",
|
"passat-back-and-forth-60-seconds",
|
||||||
|
|
Loading…
Reference in New Issue