MCPcopy Create free account
hub / github.com/PowerBroker2/ELMduino / obdStandards

Method obdStandards

src/ELMduino.cpp:1335–1338  ·  view source on GitHub ↗

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) */

Source from the content-addressed store, hash-verified

1333 * uint8_t - Bit encoded (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_1C)
1334*/
1335uint8_t ELM327::obdStandards()
1336{
1337 return (uint8_t)processPID(SERVICE_01, OBD_STANDARDS, 1, 1);
1338}
1339
1340/*
1341 uint8_t ELM327::oxygenSensorsPresent_4banks()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected