]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - keyboard/hhkb/config_iwrap.h
Add option 7bit data to serial_soft.c
[tmk_firmware.git] / keyboard / hhkb / config_iwrap.h
index 80ab64398bf54f9c0ec3f6b05f8a3ee2fe5b7cb6..747c755132a21f1e8338ca277dc59e7e144307df 100644 (file)
@@ -31,14 +31,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #define MATRIX_ROWS 8
 #define MATRIX_COLS 8
 
-
 /* key combination for command */
-#define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KB_LSHIFT) | MOD_BIT(KB_RSHIFT))) 
-
-/* mouse keys */
-#ifdef MOUSEKEY_ENABLE
-#   define MOUSEKEY_DELAY_TIME 255
-#endif
+#define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT))) 
 
 /* pins for Software UART */
 #define SUART_IN_PIN    PINC
@@ -52,4 +46,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #define DEBUG_LED_OFF       (PORTD |= (1<<4))
 #define DEBUG_LED_ON        (PORTD &= ~(1<<4))
 
+/* period of tapping(ms) */
+#define TAPPING_TERM    300
+/* tap count needed for toggling a feature */
+#define TAPPING_TOGGLE  5
+
 #endif