uint16_t ELM327::fuelSystemStatus() Description: ------------ * Freeze DTC - see https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_03 for more info Inputs: ------- * void Return: ------- * uint16_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_03) */
| 973 | * uint16_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_03) |
| 974 | */ |
| 975 | uint16_t ELM327::fuelSystemStatus() |
| 976 | { |
| 977 | return (uint16_t)processPID(SERVICE_01, FUEL_SYSTEM_STATUS, 1, 2); |
| 978 | } |
| 979 | |
| 980 | /* |
| 981 | float ELM327::engineLoad() |
nothing calls this directly
no outgoing calls
no test coverage detected