aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dc01/right
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dc01/right')
-rw-r--r--keyboards/dc01/right/matrix.c2
-rw-r--r--keyboards/dc01/right/rules.mk1
2 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/dc01/right/matrix.c b/keyboards/dc01/right/matrix.c
index 530834a7b..544c8dc53 100644
--- a/keyboards/dc01/right/matrix.c
+++ b/keyboards/dc01/right/matrix.c
@@ -237,7 +237,7 @@ void matrix_print(void)
237 print_matrix_header(); 237 print_matrix_header();
238 238
239 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 239 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
240 phex(row); print(": "); 240 print_hex8(row); print(": ");
241 print_matrix_row(row); 241 print_matrix_row(row);
242 print("\n"); 242 print("\n");
243 } 243 }
diff --git a/keyboards/dc01/right/rules.mk b/keyboards/dc01/right/rules.mk
index 3a311f985..17de05bc7 100644
--- a/keyboards/dc01/right/rules.mk
+++ b/keyboards/dc01/right/rules.mk
@@ -28,7 +28,6 @@ MIDI_ENABLE = no # MIDI support
28UNICODE_ENABLE = no # Unicode 28UNICODE_ENABLE = no # Unicode
29BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 29BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
30AUDIO_ENABLE = no # Audio output on port C6 30AUDIO_ENABLE = no # Audio output on port C6
31FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
32NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in 31NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in
33CUSTOM_MATRIX = yes # Use custom matrix 32CUSTOM_MATRIX = yes # Use custom matrix
34SRC += matrix.c \ 33SRC += matrix.c \