From 7f6bc8caa2a517f02cbff2e311b3be6c1a0d4a4b Mon Sep 17 00:00:00 2001 From: sorgelig Date: Mon, 18 Mar 2019 21:03:37 +0800 Subject: [PATCH] Ping the menu core on key/button press to wake it up. --- user_io.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/user_io.cpp b/user_io.cpp index 5865cf6..525dac3 100644 --- a/user_io.cpp +++ b/user_io.cpp @@ -2469,6 +2469,8 @@ void set_volume(int cmd) void user_io_kbd(uint16_t key, int press) { + if(is_menu_core()) spi_uio_cmd(UIO_KEYBOARD); //ping the Menu core to wakeup + if (key == KEY_MUTE) { if (press == 1 && hasAPI1_5()) set_volume(0);