From ebb1449ede5ee5fe6543eb305e38875f8347efde Mon Sep 17 00:00:00 2001 From: tmk Date: Mon, 27 Feb 2023 12:15:27 +0900 Subject: [PATCH] next_usb: Add comments for Suspend mode --- converter/next_usb/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/converter/next_usb/Makefile b/converter/next_usb/Makefile index 7e6e7230..883ff8f6 100644 --- a/converter/next_usb/Makefile +++ b/converter/next_usb/Makefile @@ -95,6 +95,17 @@ SRC += next_kbd.c VPATH += $(TARGET_DIR) VPATH += $(TMK_DIR) +# Suspend mode: +# Mode Power consumption RemoteWakeup Replug during suspend +# ----------------------------------------------------------------------------------- +# STANDBY 10mA NG OK +# POWER_DOWN 10mA OK OK +# IDLE 23mA OK OK +# NOPOWERSAVE 23mA OK OK +# NO_POWER_DOWN 23mA OK OK +# RemoteWakeup does not work with STANDBY due to NeXT query&response protocol. +# Use Power Down mode(default). +#OPT_DEFS += -DSUSPEND_MODE_STANDBY include $(TMK_DIR)/protocol.mk include $(TMK_DIR)/protocol/lufa.mk