uint8_t ELM327::oxygenSensorsPresent_2banks() Description: ------------ * Find which oxygen sensors are present ([A0..A3] == Bank 1, Sensors 1-4. [A4..A7] == Bank 2...) Inputs: ------- * void Return: ------- * uint8_t - Bit encoded */
| 1313 | * uint8_t - Bit encoded |
| 1314 | */ |
| 1315 | uint8_t ELM327::oxygenSensorsPresent_2banks() |
| 1316 | { |
| 1317 | return (uint8_t)processPID(SERVICE_01, OXYGEN_SENSORS_PRESENT_2_BANKS, 1, 1); |
| 1318 | } |
| 1319 | |
| 1320 | /* |
| 1321 | uint8_t ELM327::obdStandards() |
nothing calls this directly
no outgoing calls
no test coverage detected