diff options
Diffstat (limited to 'keyboards/handwired/not_so_minidox')
-rw-r--r-- | keyboards/handwired/not_so_minidox/keymaps/mtdjr/config.h | 7 | ||||
-rw-r--r-- | keyboards/handwired/not_so_minidox/matrix.c | 4 |
2 files changed, 3 insertions, 8 deletions
diff --git a/keyboards/handwired/not_so_minidox/keymaps/mtdjr/config.h b/keyboards/handwired/not_so_minidox/keymaps/mtdjr/config.h index 701c2cf353..c3c4a1b697 100644 --- a/keyboards/handwired/not_so_minidox/keymaps/mtdjr/config.h +++ b/keyboards/handwired/not_so_minidox/keymaps/mtdjr/config.h @@ -1,10 +1,5 @@ -#ifndef CONFIG_USER_H -#define CONFIG_USER_H - -#include QMK_KEYBOARD_CONFIG_H +#pragma once #define SOLENOID_ENABLE #define SOLENOID_PIN F6 #define SOLENOID_ACTIVE true - -#endif diff --git a/keyboards/handwired/not_so_minidox/matrix.c b/keyboards/handwired/not_so_minidox/matrix.c index aca9daedcb..b7cec9370c 100644 --- a/keyboards/handwired/not_so_minidox/matrix.c +++ b/keyboards/handwired/not_so_minidox/matrix.c @@ -261,8 +261,8 @@ void matrix_print(void) { print("\nr/c 0123456789ABCDEF\n"); for (uint8_t row = 0; row < MATRIX_ROWS; row++) { - phex(row); print(": "); - pbin_reverse16(matrix_get_row(row)); + print_hex8(row); print(": "); + print_bin_reverse16(matrix_get_row(row)); print("\n"); } } |