1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-01 19:06:06 +02:00

Garmin: enable AGPS update for all Instinct 2 devices

This commit is contained in:
Daniele Gobbetti 2024-05-03 20:27:55 +02:00
parent 60066014e0
commit 226277bcdc
3 changed files with 30 additions and 0 deletions

View File

@ -15,4 +15,14 @@ public class GarminInstinct2SCoordinator extends GarminCoordinator {
public int getDeviceNameResource() {
return R.string.devicetype_garmin_instinct_2s;
}
@Override
public boolean supportsFlashing() {
return true;
}
@Override
public boolean supportsAgpsUpdates() {
return true;
}
}

View File

@ -16,4 +16,14 @@ public class GarminInstinct2SolarCoordinator extends GarminCoordinator {
public int getDeviceNameResource() {
return R.string.devicetype_garmin_instinct_2_solar;
}
@Override
public boolean supportsFlashing() {
return true;
}
@Override
public boolean supportsAgpsUpdates() {
return true;
}
}

View File

@ -15,4 +15,14 @@ public class GarminInstinct2SolTacCoordinator extends GarminCoordinator {
public int getDeviceNameResource() {
return R.string.devicetype_garmin_instinct_2_soltac;
}
@Override
public boolean supportsFlashing() {
return true;
}
@Override
public boolean supportsAgpsUpdates() {
return true;
}
}