From 845953cc67e33dbd9ac5007ba3b39562f5aea962 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Sun, 5 Apr 2020 01:18:19 -0700 Subject: V-USB remote wakeup (#7627) * V-USB remote wakeup Backport from tmk/tmk_keyboard@391c979be751eaf113c8f53c36644a6bb6ff12f6 * Change vusb.c remote wake config as per fauxpark's suggestion --- tmk_core/protocol/vusb/vusb.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'tmk_core/protocol/vusb/vusb.c') diff --git a/tmk_core/protocol/vusb/vusb.c b/tmk_core/protocol/vusb/vusb.c index 00314ebe83..470d29ba39 100644 --- a/tmk_core/protocol/vusb/vusb.c +++ b/tmk_core/protocol/vusb/vusb.c @@ -521,11 +521,7 @@ const PROGMEM usbConfigurationDescriptor_t usbConfigurationDescriptor = { # endif .bConfigurationValue = 0x01, .iConfiguration = 0x00, -# if USB_CFG_IS_SELF_POWERED - .bmAttributes = (1 << 7) | USBATTR_SELFPOWER, -# else - .bmAttributes = (1 << 7), -# endif + .bmAttributes = (1 << 7) | USBATTR_REMOTEWAKE, .bMaxPower = USB_MAX_POWER_CONSUMPTION / 2 }, -- cgit v1.2.3