uint16_t ELM327::freezeDTC() Description: ------------ * Freeze DTC - see https://www.samarins.com/diagnose/freeze-frame.html for more info Inputs: ------- * void Return: ------- * uint16_t - Various vehicle information (https://www.samarins.com/diagnose/freeze-frame.html) */
| 953 | * uint16_t - Various vehicle information (https://www.samarins.com/diagnose/freeze-frame.html) |
| 954 | */ |
| 955 | uint16_t ELM327::freezeDTC() |
| 956 | { |
| 957 | return (uint16_t)processPID(SERVICE_01, FREEZE_DTC, 1, 2); |
| 958 | } |
| 959 | |
| 960 | /* |
| 961 | uint16_t ELM327::fuelSystemStatus() |
nothing calls this directly
no outgoing calls
no test coverage detected