uint8_t ELM327::obdStandards() Description: ------------ * Find the OBD standards this vehicle conforms to (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_1C) Inputs: ------- * void Return: ------- * uint8_t - Bit encoded (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_1C) */
| 1333 | * uint8_t - Bit encoded (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_1C) |
| 1334 | */ |
| 1335 | uint8_t ELM327::obdStandards() |
| 1336 | { |
| 1337 | return (uint8_t)processPID(SERVICE_01, OBD_STANDARDS, 1, 1); |
| 1338 | } |
| 1339 | |
| 1340 | /* |
| 1341 | uint8_t ELM327::oxygenSensorsPresent_4banks() |
nothing calls this directly
no outgoing calls
no test coverage detected