aboutsummaryrefslogtreecommitdiff
path: root/keyboards/ergodone/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/ergodone/matrix.c')
-rw-r--r--keyboards/ergodone/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/ergodone/matrix.c b/keyboards/ergodone/matrix.c
index 456f73c95..3973ff348 100644
--- a/keyboards/ergodone/matrix.c
+++ b/keyboards/ergodone/matrix.c
@@ -152,8 +152,8 @@ void matrix_print(void)
152{ 152{
153 print("\nr/c 0123456789ABCDEF\n"); 153 print("\nr/c 0123456789ABCDEF\n");
154 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 154 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
155 phex(row); print(": "); 155 print_hex8(row); print(": ");
156 pbin_reverse16(matrix_get_row(row)); 156 print_bin_reverse16(matrix_get_row(row));
157 print("\n"); 157 print("\n");
158 } 158 }
159} 159}