aboutsummaryrefslogtreecommitdiff
path: root/keyboards/helix/rev2/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/rev2/matrix.c')
-rw-r--r--keyboards/helix/rev2/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/helix/rev2/matrix.c b/keyboards/helix/rev2/matrix.c
index 8ea070aa3..8eed7e58b 100644
--- a/keyboards/helix/rev2/matrix.c
+++ b/keyboards/helix/rev2/matrix.c
@@ -309,8 +309,8 @@ void matrix_print(void)
309{ 309{
310 print("\nr/c 0123456789ABCDEF\n"); 310 print("\nr/c 0123456789ABCDEF\n");
311 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 311 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
312 phex(row); print(": "); 312 print_hex8(row); print(": ");
313 pbin_reverse16(matrix_get_row(row)); 313 print_bin_reverse16(matrix_get_row(row));
314 print("\n"); 314 print("\n");
315 } 315 }
316} 316}