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
| 933 | * uint32_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_01) |
| 934 | */ |
| 935 | uint32_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() |
nothing calls this directly
no outgoing calls
no test coverage detected