summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2022-01-22 17:12:34 +1100
committerGitHub <noreply@github.com>2022-01-22 06:12:34 +0000
commitc587df3b6660f7ec25794443909eadd7135e8d26 (patch)
tree5ff5a5a89bd992c3d54ccff4994c1494cdca7faf
parent372f2b76aa976b5a5ef9cdf11ce5afd6252242f8 (diff)
Fix build failures for `mschwingen/modelm` (#15987)
-rw-r--r--keyboards/mschwingen/modelm/matrix.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/keyboards/mschwingen/modelm/matrix.c b/keyboards/mschwingen/modelm/matrix.c
index ffc1284ead..7ea20b5a11 100644
--- a/keyboards/mschwingen/modelm/matrix.c
+++ b/keyboards/mschwingen/modelm/matrix.c
@@ -24,8 +24,6 @@
 #include "print.h"
 #include "modelm.h"
 
-#define DEBUG 0
-
 #define SPI_TIMEOUT 100
 
 /* Keyboard Matrix Assignments */
@@ -62,10 +60,9 @@ static bool read_rows_on_col(matrix_row_t current_matrix[], uint8_t current_col)
     row_data = spi_read() << 8;
     row_data |= spi_read();
 
-#if DEBUG
-    print_hex8(~row_data);
-    uprint(" ");
-#endif
+    debug_hex8(~row_data);
+    dprint(" ");
+
     // For each row...
     for (uint8_t row_index = 0; row_index < MATRIX_ROWS; row_index++) {
         // Store last value of row prior to reading
@@ -105,9 +102,8 @@ void matrix_init_custom(void) {
 bool matrix_scan_custom(matrix_row_t current_matrix[]) {
     bool changed = false;
 
-#if DEBUG
-    uprint("\r\nScan: ");
-#endif
+    dprint("\r\nScan: ");
+
     // Set col, read rows
     for (uint8_t current_col = 0; current_col < MATRIX_COLS; current_col++) {
         changed |= read_rows_on_col(current_matrix, current_col);