1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-27 15:30:14 +02:00

Zepp OS: Prevent AGPS file upload under low MTU

This commit is contained in:
José Rebelo 2023-09-17 16:39:39 +01:00
parent f6ff357a6b
commit d56a42a424
2 changed files with 16 additions and 0 deletions

View File

@ -65,9 +65,11 @@ import java.util.UUID;
import java.util.concurrent.TimeUnit;
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
import nodomain.freeyourgadget.gadgetbridge.R;
import nodomain.freeyourgadget.gadgetbridge.activities.devicesettings.DeviceSettingsPreferenceConst;
import nodomain.freeyourgadget.gadgetbridge.deviceevents.GBDeviceEventAppInfo;
import nodomain.freeyourgadget.gadgetbridge.capabilities.loyaltycards.LoyaltyCard;
import nodomain.freeyourgadget.gadgetbridge.deviceevents.GBDeviceEventDisplayMessage;
import nodomain.freeyourgadget.gadgetbridge.deviceevents.GBDeviceEventFindPhone;
import nodomain.freeyourgadget.gadgetbridge.deviceevents.GBDeviceEventScreenshot;
import nodomain.freeyourgadget.gadgetbridge.deviceevents.GBDeviceEventUpdatePreferences;
@ -585,6 +587,19 @@ public abstract class Huami2021Support extends HuamiSupport implements ZeppOsFil
try {
if (getCoordinator().sendAgpsAsFileTransfer()) {
LOG.info("Sending AGPS as file transfer");
if (getMTU() == 23) {
// AGPS updates without high MTU are too slow and eventually get stuck,
// so let's fail right away and inform the user
LOG.warn("MTU of {} is too low for AGPS file transfer", getMTU());
handleGBDeviceEvent(new GBDeviceEventDisplayMessage(
getContext().getString(R.string.updatefirmwareoperation_failed_low_mtu, getMTU()),
Toast.LENGTH_LONG,
GB.WARN
));
return;
}
new ZeppOsAgpsUpdateOperation(
this,
agpsHandler.getFile(),

View File

@ -831,6 +831,7 @@
<string name="gpx_route_upload_failed">Gpx route upload failed</string>
<string name="gpx_route_upload_complete">Gpx route upload complete</string>
<string name="gpx_route_upload_in_progress">Uploading gpx route</string>
<string name="updatefirmwareoperation_failed_low_mtu">Current MTU of %1$d is too low, please enable high MTU in the device settings.</string>
<string name="chart_steps">Steps</string>
<string name="calories">Calories</string>
<string name="distance">Distance</string>