diff options
Diffstat (limited to 'keyboards/dc01')
| -rw-r--r-- | keyboards/dc01/arrow/matrix.c | 2 | ||||
| -rw-r--r-- | keyboards/dc01/arrow/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/dc01/left/matrix.c | 2 | ||||
| -rw-r--r-- | keyboards/dc01/left/rules.mk | 2 | ||||
| -rw-r--r-- | keyboards/dc01/numpad/matrix.c | 2 | ||||
| -rw-r--r-- | keyboards/dc01/numpad/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/dc01/right/matrix.c | 2 | ||||
| -rw-r--r-- | keyboards/dc01/right/rules.mk | 1 |
8 files changed, 5 insertions, 8 deletions
diff --git a/keyboards/dc01/arrow/matrix.c b/keyboards/dc01/arrow/matrix.c index 4761c0ff1..0102ad0fa 100644 --- a/keyboards/dc01/arrow/matrix.c +++ b/keyboards/dc01/arrow/matrix.c | |||
| @@ -236,7 +236,7 @@ void matrix_print(void) | |||
| 236 | print_matrix_header(); | 236 | print_matrix_header(); |
| 237 | 237 | ||
| 238 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { | 238 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { |
| 239 | phex(row); print(": "); | 239 | print_hex8(row); print(": "); |
| 240 | print_matrix_row(row); | 240 | print_matrix_row(row); |
| 241 | print("\n"); | 241 | print("\n"); |
| 242 | } | 242 | } |
diff --git a/keyboards/dc01/arrow/rules.mk b/keyboards/dc01/arrow/rules.mk index 3a311f985..17de05bc7 100644 --- a/keyboards/dc01/arrow/rules.mk +++ b/keyboards/dc01/arrow/rules.mk | |||
| @@ -28,7 +28,6 @@ MIDI_ENABLE = no # MIDI support | |||
| 28 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 32 | NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in | 31 | NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in |
| 33 | CUSTOM_MATRIX = yes # Use custom matrix | 32 | CUSTOM_MATRIX = yes # Use custom matrix |
| 34 | SRC += matrix.c \ | 33 | SRC += matrix.c \ |
diff --git a/keyboards/dc01/left/matrix.c b/keyboards/dc01/left/matrix.c index 9ae9b1098..c3b3b39a4 100644 --- a/keyboards/dc01/left/matrix.c +++ b/keyboards/dc01/left/matrix.c | |||
| @@ -260,7 +260,7 @@ void matrix_print(void) | |||
| 260 | print_matrix_header(); | 260 | print_matrix_header(); |
| 261 | 261 | ||
| 262 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { | 262 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { |
| 263 | phex(row); print(": "); | 263 | print_hex8(row); print(": "); |
| 264 | print_matrix_row(row); | 264 | print_matrix_row(row); |
| 265 | print("\n"); | 265 | print("\n"); |
| 266 | } | 266 | } |
diff --git a/keyboards/dc01/left/rules.mk b/keyboards/dc01/left/rules.mk index 3f4cbdf73..cd440a494 100644 --- a/keyboards/dc01/left/rules.mk +++ b/keyboards/dc01/left/rules.mk | |||
| @@ -28,7 +28,7 @@ MIDI_ENABLE = no # MIDI support | |||
| 28 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | 31 | |
| 32 | CUSTOM_MATRIX = yes # Use custom matrix | 32 | CUSTOM_MATRIX = yes # Use custom matrix |
| 33 | SRC += matrix.c \ | 33 | SRC += matrix.c \ |
| 34 | i2c_master.c | 34 | i2c_master.c |
diff --git a/keyboards/dc01/numpad/matrix.c b/keyboards/dc01/numpad/matrix.c index a56c338ec..38130114e 100644 --- a/keyboards/dc01/numpad/matrix.c +++ b/keyboards/dc01/numpad/matrix.c | |||
| @@ -236,7 +236,7 @@ void matrix_print(void) | |||
| 236 | print_matrix_header(); | 236 | print_matrix_header(); |
| 237 | 237 | ||
| 238 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { | 238 | for (uint8_t row = 0; row < MATRIX_ROWS; row++) { |
| 239 | phex(row); print(": "); | 239 | print_hex8(row); print(": "); |
| 240 | print_matrix_row(row); | 240 | print_matrix_row(row); |
| 241 | print("\n"); | 241 | print("\n"); |
| 242 | } | 242 | } |
diff --git a/keyboards/dc01/numpad/rules.mk b/keyboards/dc01/numpad/rules.mk index 125182d3e..b60a646e1 100644 --- a/keyboards/dc01/numpad/rules.mk +++ b/keyboards/dc01/numpad/rules.mk | |||
| @@ -28,7 +28,6 @@ MIDI_ENABLE = no # MIDI support | |||
| 28 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 32 | NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in | 31 | NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in |
| 33 | CUSTOM_MATRIX = yes # Use custom matrix | 32 | CUSTOM_MATRIX = yes # Use custom matrix |
| 34 | SRC += matrix.c \ | 33 | SRC += matrix.c \ |
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 | |||
| 28 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 32 | NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in | 31 | NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in |
| 33 | CUSTOM_MATRIX = yes # Use custom matrix | 32 | CUSTOM_MATRIX = yes # Use custom matrix |
| 34 | SRC += matrix.c \ | 33 | SRC += matrix.c \ |
