Merge pull request #11 from nickn17/packet_filtering
Add packet filtering (Ioniq only)
This commit is contained in:
@@ -222,7 +222,7 @@ void CommObd2Can::sendFlowControlFrame() {
|
|||||||
Receive PID
|
Receive PID
|
||||||
*/
|
*/
|
||||||
uint8_t CommObd2Can::receivePID() {
|
uint8_t CommObd2Can::receivePID() {
|
||||||
|
|
||||||
if (!digitalRead(pinCanInt)) // If CAN0_INT pin is low, read receive buffer
|
if (!digitalRead(pinCanInt)) // If CAN0_INT pin is low, read receive buffer
|
||||||
{
|
{
|
||||||
lastDataSent = millis();
|
lastDataSent = millis();
|
||||||
@@ -253,6 +253,16 @@ uint8_t CommObd2Can::receivePID() {
|
|||||||
Serial.println(" [Ignored packet]");
|
Serial.println(" [Ignored packet]");
|
||||||
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();
|
||||||
|
|||||||
Reference in New Issue
Block a user