Browse Source

Set default for USB_SUSPEND_WAKEUP_DELAY to 0/disabled (#12081)

Drashna Jaelre 4 years ago
parent
commit
ab3986a684
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tmk_core/common/suspend.h

+ 1 - 1
tmk_core/common/suspend.h

@@ -14,5 +14,5 @@ void suspend_power_down_user(void);
 void suspend_power_down_kb(void);
 
 #ifndef USB_SUSPEND_WAKEUP_DELAY
-#    define USB_SUSPEND_WAKEUP_DELAY 200
+#    define USB_SUSPEND_WAKEUP_DELAY 0
 #endif