From 85939f3b189d20f70274eee54fab2dfb6a87f0fe Mon Sep 17 00:00:00 2001 From: NCKiser Date: Mon, 28 Aug 2023 17:39:44 -0500 Subject: [PATCH] removed .c and .h files, moved rules.mk to info.json --- keyboards/kiserdesigns/madeline/info.json | 16 +++++++++------- .../madeline/keymaps/default/config.h | 16 ---------------- keyboards/kiserdesigns/madeline/madeline.c | 16 ---------------- keyboards/kiserdesigns/madeline/madeline.h | 18 ------------------ keyboards/kiserdesigns/madeline/rules.mk | 8 +------- 5 files changed, 10 insertions(+), 64 deletions(-) delete mode 100644 keyboards/kiserdesigns/madeline/keymaps/default/config.h delete mode 100644 keyboards/kiserdesigns/madeline/madeline.c delete mode 100644 keyboards/kiserdesigns/madeline/madeline.h diff --git a/keyboards/kiserdesigns/madeline/info.json b/keyboards/kiserdesigns/madeline/info.json index 962d27563c3d..97e880d1c524 100644 --- a/keyboards/kiserdesigns/madeline/info.json +++ b/keyboards/kiserdesigns/madeline/info.json @@ -3,23 +3,25 @@ "manufacturer": "rubybuilds", "maintainer": "NCKiser", "bootloader": "rp2040", - "bootmagic": { - "enabled": true - }, "diode_direction": "COL2ROW", "encoder": { "enabled": true, "rotary": [ - { "pin_a": "GP13", "pin_b": "GP15", "resolution": 4 } + { "pin_a": "GP13", "pin_b": "GP15" } ] }, + "features": { + "bootmagic": true, + "command": false, + "console": false, + "extrakey": true, + "mousekey": true, + "nkro": true + }, "matrix_pins": { "cols": [ "GP25", "GP26", "GP27", "GP28", "GP29", "GP9", "GP0", "GP1", "GP2", "GP3" ], "rows": [ "GP5", "GP4", "GP12", "GP7" ] }, - "mouse_key": { - "enabled": true - }, "processor": "RP2040", "qmk": { "tap_keycode_delay": 10 diff --git a/keyboards/kiserdesigns/madeline/keymaps/default/config.h b/keyboards/kiserdesigns/madeline/keymaps/default/config.h deleted file mode 100644 index 3cf1803806c6..000000000000 --- a/keyboards/kiserdesigns/madeline/keymaps/default/config.h +++ /dev/null @@ -1,16 +0,0 @@ -/* Copyright 2021 Noah Kiser (NCKiser) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -#pragma once diff --git a/keyboards/kiserdesigns/madeline/madeline.c b/keyboards/kiserdesigns/madeline/madeline.c deleted file mode 100644 index f13661669f3a..000000000000 --- a/keyboards/kiserdesigns/madeline/madeline.c +++ /dev/null @@ -1,16 +0,0 @@ -/* Copyright 2021 Noah Kiser (NCKiser) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -#include "madeline.h" diff --git a/keyboards/kiserdesigns/madeline/madeline.h b/keyboards/kiserdesigns/madeline/madeline.h deleted file mode 100644 index 6e57641bee9c..000000000000 --- a/keyboards/kiserdesigns/madeline/madeline.h +++ /dev/null @@ -1,18 +0,0 @@ -/* Copyright 2021 Noah Kiser (NCKiser) - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -#pragma once - -#include "quantum.h" diff --git a/keyboards/kiserdesigns/madeline/rules.mk b/keyboards/kiserdesigns/madeline/rules.mk index f5bb01049613..6e7633bfe015 100644 --- a/keyboards/kiserdesigns/madeline/rules.mk +++ b/keyboards/kiserdesigns/madeline/rules.mk @@ -1,7 +1 @@ -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output +# This file intentionally left blank