diff options
Diffstat (limited to 'keyboards/40percentclub')
| -rw-r--r-- | keyboards/40percentclub/ut47/matrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/40percentclub/ut47/matrix.c b/keyboards/40percentclub/ut47/matrix.c index 921bc9ed5..e47c7f8e1 100644 --- a/keyboards/40percentclub/ut47/matrix.c +++ b/keyboards/40percentclub/ut47/matrix.c | |||
| @@ -126,8 +126,8 @@ void matrix_print(void) | |||
| 126 | { | 126 | { |
| 127 | print("\nr/c 0123456789ABCDEF\n"); | 127 | print("\nr/c 0123456789ABCDEF\n"); |
| 128 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { | 128 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { |
| 129 | phex(row); print(": "); | 129 | print_hex8(row); print(": "); |
| 130 | pbin_reverse16(matrix_get_row(row)); | 130 | print_bin_reverse16(matrix_get_row(row)); |
| 131 | print("\n"); | 131 | print("\n"); |
| 132 | } | 132 | } |
| 133 | } | 133 | } |
