Well, we better return something usefull instead of just false :-]

Please try again #178
This commit is contained in:
cpfeiffer 2015-12-09 17:54:54 +01:00
parent 6d7428ad29
commit 794ae6d800
1 changed files with 4 additions and 1 deletions

View File

@ -73,6 +73,8 @@ public class DeviceInfo extends AbstractInfo {
", profileVersion=" + profileVersion + ", profileVersion=" + profileVersion +
", fwVersion=" + fwVersion + ", fwVersion=" + fwVersion +
", hwVersion=" + hwVersion + ", hwVersion=" + hwVersion +
", feature=" + feature +
", appearance=" + appearance +
'}'; '}';
} }
@ -85,7 +87,8 @@ public class DeviceInfo extends AbstractInfo {
} }
public boolean isMilli1S() { public boolean isMilli1S() {
return false; // FIXME: what to do here? // TODO: this is probably not quite correct, but hopefully sufficient for early 1S support
return feature == 4 && appearance == 0 || feature == 4 && hwVersion == 4;
} }
public String getHwVersion() { public String getHwVersion() {