dschultz wrote:
The command to query the VANOS group is not present in the log. Did you try logging just a VANOS parameter on its own?
...
No, I didn't. I'm away from home for a few days and I didn't bring my K+DCAN cable. I'll be able to try that in a couple of days.
After searching in the source code, I think I may have found the root of the problem (starting at line 173 of src/main/java/com/romraider/logger/ecu/comms/io/connection/DS2LoggerConnection.java):
Code:
// Pre-defined Group parameter calls
// #03 Engine Parameters
// #04 Switch Parameters
// #91h Lambda Adaptations
// #92h Other Adaptations
// #93h Timing Correction/Fuel Compensation
else if (groupTest.startsWith("0x0b0x03")
|| groupTest.startsWith("0x0b0x04")
|| groupTest.startsWith("0x0b0x91")
|| groupTest.startsWith("0x0b0x92")
|| groupTest.startsWith("0x0b0x93")
|| groupTest.startsWith("0x0b0x94")
|| groupTest.startsWith("0x0b0x95")) {
I'm hoping maybe inserting
Code:
|| groupTest.startsWith("0x0b0x90")
will solve the problem.
To test that out will require rebuilding RomRaider with modified source code. It'll take me a couple of days to figure out how to do that.