From 39904d2e7d374039885a1e6ca109e174af24b01f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Berger?= Date: Tue, 29 Dec 2015 11:56:18 +0100 Subject: [PATCH] accept ELM327 v1.3 --- app/src/main/java/lu/fisch/canze/devices/ELM327.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/main/java/lu/fisch/canze/devices/ELM327.java b/app/src/main/java/lu/fisch/canze/devices/ELM327.java index 17801a9b..0ccc63f1 100644 --- a/app/src/main/java/lu/fisch/canze/devices/ELM327.java +++ b/app/src/main/java/lu/fisch/canze/devices/ELM327.java @@ -277,6 +277,9 @@ else if (toughness == 1) { if (toughness == 0 ) { switch (elmVersion) { + case 13: + if (timeoutLogLevel >= 1) MainActivity.toast("ELM ready, version 1.3, should work"); + break; case 14: if (timeoutLogLevel >= 1) MainActivity.toast("ELM ready, version 1.4, should work"); break;