Merge pull request #11 from nickn17/packet_filtering

Add packet filtering (Ioniq only)
This commit is contained in:
kolaCZek
2020-12-24 00:08:51 +01:00
committed by GitHub

View File

@@ -254,6 +254,16 @@ uint8_t CommObd2Can::receivePID() {
return 0xff; return 0xff;
} }
// Filter received messages (Ioniq only)
if(liveData->settings.carType == CAR_HYUNDAI_IONIQ_2018) {
long unsigned int atsh_response = liveData->hexToDec(liveData->currentAtshRequest.substring(4), 2, false) + 8;
if(rxId != atsh_response) {
Serial.println(" [Filtered packet]");
return 0xff;
}
}
Serial.println(); Serial.println();
processFrameBytes(); processFrameBytes();
//processFrame(); //processFrame();