aboutsummaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-02-09 09:49:05 -0800
committerGitHub <noreply@github.com>2021-02-09 09:49:05 -0800
commit7161d650705afb86b0874d95d72d15cf134f4148 (patch)
treefeddeedd645c41bebcd1b8ab3972ee634bebe697 /tmk_core
parent738bd263c18de8f78cc98311b40c79a84ae3be33 (diff)
downloadqmk_firmware-7161d650705afb86b0874d95d72d15cf134f4148.tar.gz
qmk_firmware-7161d650705afb86b0874d95d72d15cf134f4148.zip
Remove FAUXCLICKY feature (deprecated) (#11829)
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/action.c14
-rw-r--r--tmk_core/common/keyboard.c6
2 files changed, 0 insertions, 20 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index ef01a7177..e4a97e0bc 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -47,10 +47,6 @@ int tp_buttons;
47int retro_tapping_counter = 0; 47int retro_tapping_counter = 0;
48#endif 48#endif
49 49
50#ifdef FAUXCLICKY_ENABLE
51# include "fauxclicky.h"
52#endif
53
54#ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY 50#ifdef IGNORE_MOD_TAP_INTERRUPT_PER_KEY
55__attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) { return false; } 51__attribute__((weak)) bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) { return false; }
56#endif 52#endif
@@ -80,16 +76,6 @@ void action_exec(keyevent_t event) {
80#endif 76#endif
81 } 77 }
82 78
83#ifdef FAUXCLICKY_ENABLE
84 if (IS_PRESSED(event)) {
85 FAUXCLICKY_ACTION_PRESS;
86 }
87 if (IS_RELEASED(event)) {
88 FAUXCLICKY_ACTION_RELEASE;
89 }
90 fauxclicky_check();
91#endif
92
93#ifdef SWAP_HANDS_ENABLE 79#ifdef SWAP_HANDS_ENABLE
94 if (!IS_NOEVENT(event)) { 80 if (!IS_NOEVENT(event)) {
95 process_hand_swap(&event); 81 process_hand_swap(&event);
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c
index 40989ca4c..a6bde9df8 100644
--- a/tmk_core/common/keyboard.c
+++ b/tmk_core/common/keyboard.c
@@ -60,9 +60,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
60#ifdef STENO_ENABLE 60#ifdef STENO_ENABLE
61# include "process_steno.h" 61# include "process_steno.h"
62#endif 62#endif
63#ifdef FAUXCLICKY_ENABLE
64# include "fauxclicky.h"
65#endif
66#ifdef SERIAL_LINK_ENABLE 63#ifdef SERIAL_LINK_ENABLE
67# include "serial_link/system/serial_link.h" 64# include "serial_link/system/serial_link.h"
68#endif 65#endif
@@ -312,9 +309,6 @@ void keyboard_init(void) {
312#ifdef STENO_ENABLE 309#ifdef STENO_ENABLE
313 steno_init(); 310 steno_init();
314#endif 311#endif
315#ifdef FAUXCLICKY_ENABLE
316 fauxclicky_init();
317#endif
318#ifdef POINTING_DEVICE_ENABLE 312#ifdef POINTING_DEVICE_ENABLE
319 pointing_device_init(); 313 pointing_device_init();
320#endif 314#endif