aboutsummaryrefslogtreecommitdiff
path: root/keyboards/gergo/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/gergo/matrix.c')
-rw-r--r--keyboards/gergo/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/gergo/matrix.c b/keyboards/gergo/matrix.c
index 080eaea40..655e72935 100644
--- a/keyboards/gergo/matrix.c
+++ b/keyboards/gergo/matrix.c
@@ -285,8 +285,8 @@ inline matrix_row_t matrix_get_row(uint8_t row) { return matrix[row]; }
285void matrix_print(void) { 285void matrix_print(void) {
286 print("\nr/c 0123456789ABCDEF\n"); 286 print("\nr/c 0123456789ABCDEF\n");
287 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 287 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
288 phex(row); print(": "); 288 print_hex8(row); print(": ");
289 pbin_reverse16(matrix_get_row(row)); 289 print_bin_reverse16(matrix_get_row(row));
290 print("\n"); 290 print("\n");
291 } 291 }
292} 292}