mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-05 01:37:03 +01:00
Amazfit Bip S: Fix firmware flashing on DTH variant with firmware 4.1.5.55
This commit is contained in:
parent
975718e284
commit
5bdee2c130
@ -101,7 +101,8 @@ public class AmazfitBipSSupport extends AmazfitBipSupport {
|
|||||||
public UpdateFirmwareOperation createUpdateFirmwareOperation(Uri uri) {
|
public UpdateFirmwareOperation createUpdateFirmwareOperation(Uri uri) {
|
||||||
Version version = new Version(gbDevice.getFirmwareVersion());
|
Version version = new Version(gbDevice.getFirmwareVersion());
|
||||||
// 4.0.0.00 is here to not confuse with DTH variant
|
// 4.0.0.00 is here to not confuse with DTH variant
|
||||||
if (version.compareTo(new Version("2.1.1.50")) >= 0 && version.compareTo(new Version("4.0.0.00")) < 0) {
|
if ((version.compareTo(new Version("2.1.1.50")) >= 0 && version.compareTo(new Version("4.0.0.00")) < 0) ||
|
||||||
|
(version.compareTo(new Version("4.1.5.55")) >= 0)) {
|
||||||
return new UpdateFirmwareOperation2020(uri, this);
|
return new UpdateFirmwareOperation2020(uri, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user