diff options
Diffstat (limited to 'keyboards/moon')
-rw-r--r-- | keyboards/moon/matrix.c | 2 | ||||
-rw-r--r-- | keyboards/moon/rules.mk | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/moon/matrix.c b/keyboards/moon/matrix.c index c74c70f897..24b4d49560 100644 --- a/keyboards/moon/matrix.c +++ b/keyboards/moon/matrix.c @@ -118,7 +118,7 @@ void matrix_print(void) { print_matrix_header(); for (uint8_t row = 0; row < MATRIX_ROWS; row++) { - phex(row); + print_hex8(row); print(": "); print_matrix_row(row); print("\n"); diff --git a/keyboards/moon/rules.mk b/keyboards/moon/rules.mk index 9b6b588c66..2878fed9f5 100644 --- a/keyboards/moon/rules.mk +++ b/keyboards/moon/rules.mk @@ -29,7 +29,6 @@ MIDI_ENABLE = no # MIDI support UNICODE_ENABLE = no # Unicode BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID AUDIO_ENABLE = no # Audio output on port C6 -FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches # custom matrix setup CUSTOM_MATRIX = yes |