X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=converter%2Fps2_usb%2Fconfig_rev2.h;h=1f42cd49348af2f95afd86d79a69d65e3a42be70;hb=814eaa2dffa10f8b3a9f5c5ae6fab430322056d7;hp=2e91838e28c8171b62e4cde66dd07cfd0fbda5cd;hpb=112cadb1882d88bf8d02dcfcc4e66207fecf8bf5;p=max%2Ftmk_keyboard.git diff --git a/converter/ps2_usb/config_rev2.h b/converter/ps2_usb/config_rev2.h index 2e91838e..1f42cd49 100644 --- a/converter/ps2_usb/config_rev2.h +++ b/converter/ps2_usb/config_rev2.h @@ -35,7 +35,8 @@ along with this program. If not, see . /* key combination for command */ #define IS_COMMAND() ( \ - keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ + keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) || \ + keyboard_report->mods == (MOD_BIT(KC_LALT) | MOD_BIT(KC_RALT)) \ ) @@ -82,4 +83,13 @@ along with this program. If not, see . #define PS2_INT_VECT INT1_vect #endif +#ifdef LUFA_DEBUG_SUART +# define SUART_OUT_DDR DDRD +# define SUART_OUT_PORT PORTD +# define SUART_OUT_BIT 4 +# define SUART_IN_DDR DDRD +# define SUART_IN_PIN PIND +# define SUART_IN_BIT 4 +#endif + #endif