commit: d0e89aeccada3f0df906dd4ff8fa7708b0d8234e
parent ecf5b26ff0a8c2c10c2f201fcf9d6bbff299b7a0
Author: Joel Challis <git@zvecr.com>
Date: Fri, 5 Jul 2024 12:02:39 +0100
Align LUFA suspend logic (#24055)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tmk_core/protocol/lufa/lufa.c b/tmk_core/protocol/lufa/lufa.c
@@ -836,7 +836,7 @@ void protocol_pre_task(void) {
dprintln("suspending keyboard");
while (USB_DeviceState == DEVICE_STATE_Suspended) {
suspend_power_down();
- if (USB_Device_RemoteWakeupEnabled && suspend_wakeup_condition()) {
+ if (suspend_wakeup_condition() && USB_Device_RemoteWakeupEnabled) {
USB_Device_SendRemoteWakeup();
clear_keyboard();