summaryrefslogtreecommitdiff
path: root/users/drashna/process_records.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-01-22 16:23:41 +0000
committerQMK Bot <hello@qmk.fm>2021-01-22 16:23:41 +0000
commitb58d164504f5c4e60657afb7e9854b2bea04f266 (patch)
tree3ba4d070152eb0f6204e0016082c3c5bbd1a3dd4 /users/drashna/process_records.c
parent37ebbe8d9e4cadfe33d74d9534a146b0d21f8805 (diff)
parent7a08b9d374dfcf9d872738af44b231862064b96f (diff)
Merge remote-tracking branch 'origin/master' into develop
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 19bdef73f1..14fda92dea 100644
--- a/users/drashna/process_records.c
+++ b/users/drashna/process_records.c
@@ -15,6 +15,7 @@
*/
#include "drashna.h"
+#include "version.h"
uint16_t copy_paste_timer;
@@ -27,11 +28,7 @@ __attribute__((weak)) bool process_record_secrets(uint16_t keycode, keyrecord_t
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// If console is enabled, it will print the matrix position and status of each key pressed
#ifdef KEYLOGGER_ENABLE
-# if defined(KEYBOARD_ergodox_ez) || defined(KEYBOARD_keebio_iris_rev2)
- xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.row, record->event.key.col, record->event.pressed);
-# else
- xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed);
-# endif
+ 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);
#endif // KEYLOGGER_ENABLE
#ifdef OLED_DRIVER_ENABLE
process_record_user_oled(keycode, record);