1
0
mirror of https://github.com/4yn/slidershim.git synced 2024-09-23 18:58:27 +02:00

fix hid regression on yubideck

This commit is contained in:
4yn 2022-08-08 22:58:24 +08:00
parent 0b75d1c62e
commit e285bdb999

View File

@ -211,11 +211,12 @@ impl HidJob {
0x02, // Need to confirm
*disable_air,
|buf, input| {
if buf.len != 45 {
if buf.len != 45 && buf.len != 46 {
return;
}
input.ground.copy_from_slice(&buf.data[2..34]);
input.flip_vert();
for i in 0..6 {
input.air[i ^ 1] = (buf.data[0] >> i) & 1;
}