12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef ACTION_TAPPING_H
- #define ACTION_TAPPING_H
- #ifndef TAPPING_TERM
- # define TAPPING_TERM 200
- #endif
- #ifndef TAPPING_TOGGLE
- # define TAPPING_TOGGLE 5
- #endif
- #define WAITING_BUFFER_SIZE 8
- #ifndef NO_ACTION_TAPPING
- uint16_t get_event_keycode(keyevent_t event);
- uint16_t get_tapping_term(uint16_t keycode);
- void action_tapping_process(keyrecord_t record);
- #endif
- #endif
|