X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=converter%2Fusb_usb%2Fconfig.h;h=7b80fc214013138fb0306790549b2e55d68cde1b;hb=c25cdae5f2307dad87c759e42bfc81f84de55612;hp=d614973f7ebf4a4c3821d6e4e8f3bb2ed5114399;hpb=363950982a291c3bfa03ac6362061b1d37dc06b0;p=max%2Ftmk_keyboard.git diff --git a/converter/usb_usb/config.h b/converter/usb_usb/config.h index d614973f..7b80fc21 100644 --- a/converter/usb_usb/config.h +++ b/converter/usb_usb/config.h @@ -20,7 +20,7 @@ along with this program. If not, see . #define VENDOR_ID 0xFEED -#define PRODUCT_ID 0xCAFE +#define PRODUCT_ID 0x005B #define DEVICE_VER 0x0814 #define MANUFACTURER t.m.k. #define PRODUCT USB to USB keyboard converter @@ -30,12 +30,23 @@ along with this program. If not, see . /* matrix size */ -#define MATRIX_ROWS 32 -#define MATRIX_COLS 8 - -#define USE_LEGACY_KEYMAP +#define MATRIX_ROWS 16 +#define MATRIX_COLS 16 /* key combination for command */ #define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT))) + +// Disable power saving in USB suspend loop but remote wakeup is still valid. +// This allows keep USB::Task() going during suspend without power down time delay. +//#define NO_SUSPEND_POWER_DOWN + + +// Disable USB startup wait, which can delays starting UHS2 Task() for 350-600ms. +//#define NO_USB_STARTUP_WAIT_LOOP + +// Disable USB suspend loop, which blocks UHS2 Task() while power saving. +// Note that this also disables power saving and remote wakeup from keyboard completely. +//#define NO_USB_SUSPEND_LOOP + #endif