uint32_t ELM327::monitorDriveCycleStatus() Description: ------------ * Find status this drive cycle (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_41) Inputs: ------- * void Return: ------- * uint32_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_41) */
| 1753 | * uint32_t - Bit encoded status (https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_41) |
| 1754 | */ |
| 1755 | uint32_t ELM327::monitorDriveCycleStatus() |
| 1756 | { |
| 1757 | return (uint32_t)processPID(SERVICE_01, MONITOR_STATUS_THIS_DRIVE_CYCLE, 1, 4); |
| 1758 | } |
| 1759 | |
| 1760 | /* |
| 1761 | float ELM327::ctrlModVoltage() |
nothing calls this directly
no outgoing calls
no test coverage detected