aboutsummaryrefslogtreecommitdiff
path: root/users/drashna/process_records.c
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/process_records.c')
-rw-r--r--users/drashna/process_records.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/users/drashna/process_records.c b/users/drashna/process_records.c
index 19bdef73f..14fda92de 100644
--- a/users/drashna/process_records.c
+++ b/users/drashna/process_records.c
@@ -15,6 +15,7 @@
15 */ 15 */
16 16
17#include "drashna.h" 17#include "drashna.h"
18#include "version.h"
18 19
19uint16_t copy_paste_timer; 20uint16_t copy_paste_timer;
20 21
@@ -27,11 +28,7 @@ __attribute__((weak)) bool process_record_secrets(uint16_t keycode, keyrecord_t
27bool process_record_user(uint16_t keycode, keyrecord_t *record) { 28bool process_record_user(uint16_t keycode, keyrecord_t *record) {
28 // If console is enabled, it will print the matrix position and status of each key pressed 29 // If console is enabled, it will print the matrix position and status of each key pressed
29#ifdef KEYLOGGER_ENABLE 30#ifdef KEYLOGGER_ENABLE
30# if defined(KEYBOARD_ergodox_ez) || defined(KEYBOARD_keebio_iris_rev2) 31 uprintf("KL: kc: 0x%04X, col: %2u, row: %2u, pressed: %b, time: %5u, int: %b, count: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed, record->event.time, record->tap.interrupted, record->tap.count);
31 xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.row, record->event.key.col, record->event.pressed);
32# else
33 xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed);
34# endif
35#endif // KEYLOGGER_ENABLE 32#endif // KEYLOGGER_ENABLE
36#ifdef OLED_DRIVER_ENABLE 33#ifdef OLED_DRIVER_ENABLE
37 process_record_user_oled(keycode, record); 34 process_record_user_oled(keycode, record);