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

Method monitorStatus

src/ELMduino.cpp:935–938  ·  view source on GitHub ↗

uint32_t ELM327::monitorStatus() Description: ------------ * Monitor status since DTCs cleared (Includes malfunction indicator lamp (MIL) status and number of DTCs). See https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_01 for more info Inputs: ------- * void Return: ------- * uint32_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_0

Source from the content-addressed store, hash-verified

933 * uint32_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_01)
934*/
935uint32_t ELM327::monitorStatus()
936{
937 return (uint32_t)processPID(SERVICE_01, MONITOR_STATUS_SINCE_DTC_CLEARED, 1, 4);
938}
939
940/*
941 uint16_t ELM327::freezeDTC()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected