float ELM327::egrError() Description: ------------ * Find Exhaust Gas Recirculation (EGR) error in % Inputs: ------- * void Return: ------- * float - Exhaust Gas Recirculation (EGR) error in % */
| 1513 | * float - Exhaust Gas Recirculation (EGR) error in % |
| 1514 | */ |
| 1515 | float ELM327::egrError() |
| 1516 | { |
| 1517 | return processPID(SERVICE_01, EGR_ERROR, 1, 1, 100.0 / 128.0, -100); |
| 1518 | } |
| 1519 | |
| 1520 | /* |
| 1521 | float ELM327::commandedEvapPurge() |
nothing calls this directly
no outgoing calls
no test coverage detected