This commit is contained in:
rusefillc 2022-08-26 21:23:03 -04:00
parent 435861b7b7
commit 7101766eef
3 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 9e55eda870657a317692cd1374ee4bef3d5a65d5
Subproject commit ef9a5468811365fa911a8476d4f3c22628ed5e2a

View File

@ -23,7 +23,7 @@ public class HandleFolder {
List<CANPacket> packets = new PcanTrcReader().readFile(fullInputFile);
String outputFileName = outputFolder + File.separator + inputFile;
String outputFileName = outputFolder + File.separator + inputFile + ".mlg";
LoggingStrategy.writeLog(dbc, packets, outputFileName);
}

View File

@ -13,7 +13,7 @@ public class TrcToMlq {
if (args.length == 3) {
String dbcFileName = args[0];
String inputFolder = args[1];
String outputFolder = args[1];
String outputFolder = args[2];
HandleFolder.doJob(dbcFileName, inputFolder, outputFolder);
} else if (args.length != 2) {
System.err.println("Two arguments expected - DBC file name and TRC file name");