aboutsummaryrefslogtreecommitdiff
path: root/keyboard/phantom/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/phantom/matrix.c')
-rw-r--r--keyboard/phantom/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboard/phantom/matrix.c b/keyboard/phantom/matrix.c
index 7b2461dcc..92db6817c 100644
--- a/keyboard/phantom/matrix.c
+++ b/keyboard/phantom/matrix.c
@@ -220,10 +220,10 @@ matrix_row_t matrix_get_row(uint8_t row)
220 220
221void matrix_print(void) 221void matrix_print(void)
222{ 222{
223 print("\nr/c 01234567\n"); 223 print("\nr/c 0123456789ABCDEF\n");
224 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 224 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
225 phex(row); print(": "); 225 phex(row); print(": ");
226 pbin_reverse(matrix_get_row(row)); 226 print_bin_reverse32(matrix_get_row(row));
227 print("\n"); 227 print("\n");
228 } 228 }
229} 229}