mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-25 18:15:49 +01:00
Sony WH-1000XM4: Attempt to fix handling of speak to cheat enabled
This commit is contained in:
parent
f2a7f6ab45
commit
2ec68dbef4
@ -770,6 +770,12 @@ public class SonyProtocolImplV1 extends AbstractSonyProtocolImpl {
|
|||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (payload[1] != 0x01) {
|
||||||
|
// TODO: Handle these, setting speak to chat sends a 0x02 back
|
||||||
|
LOG.warn("Not speak to chat enabled, ignoring");
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
final Boolean enabled = booleanFromByte(payload[3]);
|
final Boolean enabled = booleanFromByte(payload[3]);
|
||||||
if (enabled == null) {
|
if (enabled == null) {
|
||||||
LOG.warn("Unknown speak to chat code {}", String.format("%02x", payload[3]));
|
LOG.warn("Unknown speak to chat code {}", String.format("%02x", payload[3]));
|
||||||
|
Loading…
Reference in New Issue
Block a user