From 2a67ff690ee5b0789b10448eef9fa0724a6c8d60 Mon Sep 17 00:00:00 2001 From: Zach White Date: Tue, 1 Dec 2020 16:04:38 -0800 Subject: clean up generate-api errors --- keyboards/kmac/info.json | 2 -- 1 file changed, 2 deletions(-) (limited to 'keyboards/kmac') diff --git a/keyboards/kmac/info.json b/keyboards/kmac/info.json index 2fe0ef2697..6a98fab0a4 100644 --- a/keyboards/kmac/info.json +++ b/keyboards/kmac/info.json @@ -1,8 +1,6 @@ { "keyboard_name": "kmac", - "url": "", "maintainer": "qmk", - "bootloader": "", "width": 18.25, "height": 6.5, "layouts": { -- cgit v1.2.3 From f5a38b95c12d100ab74acfd603502c66e0d0911d Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Sat, 6 Feb 2021 16:56:13 +0000 Subject: Remove legacy print backward compatiblitly (#11805) * Remove legacy print backward compatiblitly * Remove legacy print backward compatiblitly - core * revert comment changes --- keyboards/kmac/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keyboards/kmac') diff --git a/keyboards/kmac/matrix.c b/keyboards/kmac/matrix.c index 9bc59a0784..3d5a3081d1 100644 --- a/keyboards/kmac/matrix.c +++ b/keyboards/kmac/matrix.c @@ -72,7 +72,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"); -- cgit v1.2.3 From 7161d650705afb86b0874d95d72d15cf134f4148 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Tue, 9 Feb 2021 09:49:05 -0800 Subject: Remove FAUXCLICKY feature (deprecated) (#11829) --- keyboards/kmac/rules.mk | 1 - 1 file changed, 1 deletion(-) (limited to 'keyboards/kmac') diff --git a/keyboards/kmac/rules.mk b/keyboards/kmac/rules.mk index 36c917fac6..33e423d3db 100644 --- a/keyboards/kmac/rules.mk +++ b/keyboards/kmac/rules.mk @@ -33,7 +33,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 # Project specific files SRC += matrix.c -- cgit v1.2.3