parent
4fb65cddd5
commit
ff34f3d8a1
|
@ -31,7 +31,7 @@ static void handleHonda(uint8_t *bufferIn) {
|
||||||
uint8_t statusByte1 = bufferIn[1];
|
uint8_t statusByte1 = bufferIn[1];
|
||||||
// no cabin blower 0x06, with blower 0x86
|
// no cabin blower 0x06, with blower 0x86
|
||||||
uint8_t statusByte2 = bufferIn[2];
|
uint8_t statusByte2 = bufferIn[2];
|
||||||
kAcRequestState = statusByte1 & 0x80;
|
kAcRequestState = statusByte2 & 0x80;
|
||||||
if (engineConfiguration->verboseKLine) {
|
if (engineConfiguration->verboseKLine) {
|
||||||
efiPrintf("honda status packet with 0x%02x 0x%02x state %d", statusByte1, statusByte2, kAcRequestState);
|
efiPrintf("honda status packet with 0x%02x 0x%02x state %d", statusByte1, statusByte2, kAcRequestState);
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,7 +45,7 @@ public class RandomToolHondaKPacketAnalyzer {
|
||||||
//name.contains("9-re") && name.endsWith(".csv")
|
//name.contains("9-re") && name.endsWith(".csv")
|
||||||
// name.contains("less-cold") && name.endsWith(".csv")
|
// name.contains("less-cold") && name.endsWith(".csv")
|
||||||
// name.contains("12-w") && name.endsWith(".csv")
|
// name.contains("12-w") && name.endsWith(".csv")
|
||||||
name.contains("25-") && name.endsWith(".csv")
|
name.contains("29-") && name.endsWith(".csv")
|
||||||
// name.contains("-ac-") && name.endsWith(".csv")
|
// name.contains("-ac-") && name.endsWith(".csv")
|
||||||
|
|
||||||
// !name.startsWith("__") && name.endsWith(".csv")
|
// !name.startsWith("__") && name.endsWith(".csv")
|
||||||
|
|
Loading…
Reference in New Issue