| 3300 | } |
| 3301 | |
| 3302 | double ELM327::calculator_32() |
| 3303 | { |
| 3304 | return (double) ((int16_t)((response_A << 8) | response_B)) / 4.0; |
| 3305 | } |
| 3306 | |
| 3307 | double ELM327::calculator_3C() { |
| 3308 | return (double) (((response_A << 8) | response_B) / 10) - 40; |
nothing calls this directly
no outgoing calls
no test coverage detected