1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #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
- void action_tapping_process(keyrecord_t record);
- #endif
- #endif
|