1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-20 03:50:43 +02:00

Xiaomi: Fix workout types on xiaomi.proto

This commit is contained in:
José Rebelo 2023-12-10 20:48:30 +00:00
parent 5ca3298e5b
commit e6aa9d276a

View File

@ -92,7 +92,7 @@ message System {
optional DoNotDisturb dndStatus = 11;
// 2, 39
optional WidgetSubtypes widgetSubtypes = 14;
optional WorkoutTypes workoutTypes = 14;
// 2, 5
optional FirmwareInstallRequest firmwareInstallRequest = 16;
@ -209,13 +209,13 @@ message Language {
optional string code = 1; // pt_pt, en_us
}
message WidgetSubtypes {
repeated WidgetSubtype widgetSubtype = 1;
message WorkoutTypes {
repeated WorkoutType workoutType = 1;
optional uint32 unknown2 = 2; // 1
}
message WidgetSubtype {
optional uint32 subType = 1;
message WorkoutType {
optional uint32 type = 1;
optional uint32 unknown2 = 2; // 1
}