Road Dyno(v16) Fix to be able to read OpenPort 2.0 log files into Dyno tab.

git-svn-id: https://svn2.assembla.com/svn/romraider/branches/dev_road_dyno@278 38686702-15cf-42e4-a595-3071df8bf5ea
This commit is contained in:
Dale Schultz 2010-04-30 18:22:11 +00:00
parent 76c3858bad
commit e715576ef7
3 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
- RomRaider 0.5.3 Beta RC5-rd-v15 - - RomRaider 0.5.3 Beta RC5-rd-v16 -
Open-Source ECU Tuning -- www.romraider.com Open-Source ECU Tuning -- www.romraider.com
@ -35,10 +35,10 @@ documentation may be incomplete or out of date.
------------------------------- -------------------------------
- 0.5.3b-rd-v15 RC5 Notes (04/29/2010) - - 0.5.3b-rd-v16 RC5 Notes (04/30/2010) -
------------------------------- -------------------------------
This is the fifth beta release of the upcoming official 0.5.3b release. This is the fifth beta release of the upcoming official 0.5.3b release.
This RC includes the new Road Dyno/ET tab, version 15. This RC includes the new Road Dyno/ET tab, version 16.
To use the Road Dyno: To use the Road Dyno:
- Set the Mode button to Dyno - Set the Mode button to Dyno
- Clear all parameters from the other tabs to achieve the best data - Clear all parameters from the other tabs to achieve the best data

View File

@ -121,6 +121,7 @@ public final class DynoControlPanel extends JPanel {
private static final String COBB_AP_TIME = "Seconds"; private static final String COBB_AP_TIME = "Seconds";
private static final String COBB_ATR_TIME = "Time Stamp"; private static final String COBB_ATR_TIME = "Time Stamp";
private static final String AEM_LOG_TIME = "Time/s"; private static final String AEM_LOG_TIME = "Time/s";
private static final String OP2_LOG_TIME = "time";
private static final String LOG_RPM = "RPM"; private static final String LOG_RPM = "RPM";
private static final String LOG_ES = "Engine Speed"; private static final String LOG_ES = "Engine Speed";
private static final String LOG_TA = "Throttle"; private static final String LOG_TA = "Throttle";
@ -1025,7 +1026,9 @@ public final class DynoControlPanel extends JPanel {
} }
for (int x =0; x < headers.length; x++){ for (int x =0; x < headers.length; x++){
if (headers[x].contains(RR_LOG_TIME)) timeCol = x; if (headers[x].contains(RR_LOG_TIME)) timeCol = x;
if (headers[x].contains(COBB_AP_TIME) || headers[x].contains(AEM_LOG_TIME)) { if (headers[x].contains(COBB_AP_TIME) ||
headers[x].contains(AEM_LOG_TIME) ||
headers[x].contains(OP2_LOG_TIME)) {
timeCol = x; timeCol = x;
timeMult = 1000; timeMult = 1000;
} }

View File

@ -23,7 +23,7 @@ version.minor=5
version.patch=3 version.patch=3
version.buildnumber=${buildnumber} version.buildnumber=${buildnumber}
version.extra=Beta version.extra=Beta
version.extra1=RC5-rd-v15 version.extra1=RC5-rd-v16
# the starting class for the application # the starting class for the application
class.start=com.romraider.ECUExec class.start=com.romraider.ECUExec