Request extra frames for HW decoder

This commit is contained in:
Niellune
2026-02-28 20:32:29 +02:00
parent 971e48845e
commit 776edef942
5 changed files with 13 additions and 2 deletions
+6
View File
@@ -119,6 +119,12 @@ void Protocol::sendKey(int key)
write_uint32_le(&buf[0], key);
send(CMD_CONTROL, false, buf, 4);
if(Settings::forceRedraw)
{
write_uint32_le(&buf[0], BTN_SCREEN_REFRESH);
send(CMD_CONTROL, false, buf, 4);
}
}
void Protocol::sendFile(const char *filename, const char *value)