mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-10 12:09:27 +01:00
Allow firmware files up to 1.5MB
This helps some experiments
This commit is contained in:
parent
ad750c0047
commit
f6b183d39a
@ -50,7 +50,7 @@ public abstract class AbstractMiBandFWHelper {
|
||||
}
|
||||
|
||||
try (InputStream in = new BufferedInputStream(uriHelper.openInputStream())) {
|
||||
this.fw = FileUtils.readAll(in, 1024 * 1024); // 1 MB
|
||||
this.fw = FileUtils.readAll(in, 1024 * 1536); // 1.5 MB
|
||||
determineFirmwareInfo(fw);
|
||||
} catch (IOException ex) {
|
||||
throw ex; // pass through
|
||||
|
@ -17,7 +17,7 @@ import nodomain.freeyourgadget.gadgetbridge.util.FileUtils;
|
||||
@Ignore("Disabled for travis -- needs vm parameter -DMiFirmwareDir=/path/to/firmware/directory/")
|
||||
public class FirmwareTest {
|
||||
|
||||
private static final long MAX_FILE_SIZE_BYTES = 1024 * 1024; // 1MB
|
||||
private static final long MAX_FILE_SIZE_BYTES = 1024 * 1536; // 1.5MB
|
||||
private static final int MI_FW_VERSION = 0; // FIXME
|
||||
private static final int MI1A_FW_VERSION = 0; // FIXME
|
||||
private static final int MI1S_FW1_VERSION = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user