1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-09 22:57:54 +02:00
Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/devices/vivomovehr/messages/FileTransferDataResponseMessage.java
Mormegil 3a58314db6 Garmin Vivomove HR support
- communication protocols
- device support implementation
- download FIT file storage

Features:
- basic connectivity: time sync, battery status, HW/FW version info
- real-time activity tracking
- fitness data sync
- find the device, find the phone
- factory reset

Features implemented but not working:
- notifications: fully implemented, seem to communicate correctly, but not shown on watch

Features implemented partially (not expected to work now):
- weather information (and in future possibly weather alerts)
- music info
- firmware update: only the initial file upload implemented, not used

Things to improve/change:
- Device name hardcoded in `VivomoveHrCoordinator.getSupportedType`, service UUIDs not available
- Download FIT file storage: Should be store (and offer the user to export?) the FIT data forever?
- Obviously, various code improvements, cleanup, etc.
2023-07-20 20:30:14 +00:00

49 lines
2.1 KiB
Java

package nodomain.freeyourgadget.gadgetbridge.service.devices.vivomovehr.messages;
import nodomain.freeyourgadget.gadgetbridge.devices.vivomovehr.VivomoveConstants;
import nodomain.freeyourgadget.gadgetbridge.service.devices.vivomovehr.BinaryUtils;
import nodomain.freeyourgadget.gadgetbridge.service.devices.vivomovehr.ChecksumCalculator;
public class FileTransferDataResponseMessage {
public static final byte RESPONSE_TRANSFER_SUCCESSFUL = 0;
public static final byte RESPONSE_RESEND_LAST_DATA_PACKET = 1;
public static final byte RESPONSE_ABORT_DOWNLOAD_REQUEST = 2;
public static final byte RESPONSE_ERROR_CRC_MISMATCH = 3;
public static final byte RESPONSE_ERROR_DATA_OFFSET_MISMATCH = 4;
public static final byte RESPONSE_SILENT_SYNC_PAUSED = 5;
public final int status;
public final int response;
public final int nextDataOffset;
public final byte[] packet;
public FileTransferDataResponseMessage(int status, int response, int nextDataOffset) {
this.status = status;
this.response = response;
this.nextDataOffset = nextDataOffset;
final MessageWriter writer = new MessageWriter();
writer.writeShort(0); // packet size will be filled below
writer.writeShort(VivomoveConstants.MESSAGE_RESPONSE);
writer.writeShort(VivomoveConstants.MESSAGE_FILE_TRANSFER_DATA);
writer.writeByte(status);
writer.writeByte(response);
writer.writeInt(nextDataOffset);
writer.writeShort(0); // CRC will be filled below
final byte[] packet = writer.getBytes();
BinaryUtils.writeShort(packet, 0, packet.length);
BinaryUtils.writeShort(packet, packet.length - 2, ChecksumCalculator.computeCrc(packet, 0, packet.length - 2));
this.packet = packet;
}
public static FileTransferDataResponseMessage parsePacket(byte[] packet) {
final MessageReader reader = new MessageReader(packet, 6);
final int status = reader.readByte();
final int response = reader.readByte();
final int nextDataOffset = reader.readInt();
return new FileTransferDataResponseMessage(status, response, nextDataOffset);
}
}