Added PLX sensor address 4032 as a bogus type.

This commit is contained in:
Dale Schultz 2013-07-28 18:16:52 -04:00
parent a55f9bda74
commit d77e3a23fd
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* /*
* RomRaider Open-Source Tuning, Logging and Reflashing * RomRaider Open-Source Tuning, Logging and Reflashing
* Copyright (C) 2006-2012 RomRaider.com * Copyright (C) 2006-2013 RomRaider.com
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -41,6 +41,10 @@ public final class TestPlxConnection implements SerialConnection {
0x00, 0x00, 0x01, 0x00, 0x09, // AFR 1 0x00, 0x00, 0x01, 0x00, 0x09, // AFR 1
0x00, 0x01, 0x00, 0x1F, 0x3F, // EGT 0 0x00, 0x01, 0x00, 0x1F, 0x3F, // EGT 0
0x00, 0x02, 0x00, 0x00, 0x3F, // Fluid Temp 0 0x00, 0x02, 0x00, 0x00, 0x3F, // Fluid Temp 0
0x40,
(byte) 0x80,
0x00, 0x00, 0x00, 0x01, 0x2f, // AFR 0
0x3f, 0x00, 0x00, 0x00, 0x00, // bogus sensor
0x40}; 0x40};
private int index; private int index;
private byte[] result = new byte[1]; private byte[] result = new byte[1];

View File

@ -1,6 +1,6 @@
/* /*
* RomRaider Open-Source Tuning, Logging and Reflashing * RomRaider Open-Source Tuning, Logging and Reflashing
* Copyright (C) 2006-2012 RomRaider.com * Copyright (C) 2006-2013 RomRaider.com
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -41,6 +41,7 @@ public enum PlxSensorType {
VOLTAGE(18), VOLTAGE(18),
KNOCK(19), KNOCK(19),
DUTY_CYCLE(20), DUTY_CYCLE(20),
BOGUS(4032),
UNKNOWN(-1); UNKNOWN(-1);
private final int value; private final int value;