uint32_t ELM327::supportedPIDs_1_20() Description: ------------ * Determine which of PIDs 0x1 through 0x20 are supported (bit encoded) Inputs: ------- * void Return: ------- * uint32_t - Bit encoded booleans of supported PIDs 0x1-0x20 */
| 911 | * uint32_t - Bit encoded booleans of supported PIDs 0x1-0x20 |
| 912 | */ |
| 913 | uint32_t ELM327::supportedPIDs_1_20() |
| 914 | { |
| 915 | return (uint32_t)processPID(SERVICE_01, SUPPORTED_PIDS_1_20, 1, 4); |
| 916 | } |
| 917 | |
| 918 | /* |
| 919 | uint32_t ELM327::monitorStatus() |
nothing calls this directly
no outgoing calls
no test coverage detected