mirror of https://github.com/rusefi/RomRaider.git
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:
parent
76c3858bad
commit
e715576ef7
|
@ -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
|
||||
|
||||
|
||||
|
@ -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 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:
|
||||
- Set the Mode button to Dyno
|
||||
- Clear all parameters from the other tabs to achieve the best data
|
||||
|
|
|
@ -121,6 +121,7 @@ public final class DynoControlPanel extends JPanel {
|
|||
private static final String COBB_AP_TIME = "Seconds";
|
||||
private static final String COBB_ATR_TIME = "Time Stamp";
|
||||
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_ES = "Engine Speed";
|
||||
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++){
|
||||
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;
|
||||
timeMult = 1000;
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ version.minor=5
|
|||
version.patch=3
|
||||
version.buildnumber=${buildnumber}
|
||||
version.extra=Beta
|
||||
version.extra1=RC5-rd-v15
|
||||
version.extra1=RC5-rd-v16
|
||||
|
||||
# the starting class for the application
|
||||
class.start=com.romraider.ECUExec
|
||||
|
|
Loading…
Reference in New Issue