diff options
| author | Joel Challis | 2025-05-01 16:02:17 +0200 |
|---|---|---|
| committer | GitHub | 2025-05-01 16:02:17 +0200 |
| commit | 4fb3cf0712dc20f23af634e56486a03ba4b4cf30 (patch) | |
| tree | 3e5881e07719dc754b58404b50fc06131810d279 /keyboards/umbra/solder | |
| parent | e98c41c02f49be208c77a9be4906c2e0a18cbb52 (diff) | |
Remove redundant keyboard headers (#25208)
Diffstat (limited to 'keyboards/umbra/solder')
| -rw-r--r-- | keyboards/umbra/solder/solder.c | 10 | ||||
| -rw-r--r-- | keyboards/umbra/solder/solder.h | 22 |
2 files changed, 9 insertions, 23 deletions
diff --git a/keyboards/umbra/solder/solder.c b/keyboards/umbra/solder/solder.c index ef7581deab..de0681b229 100644 --- a/keyboards/umbra/solder/solder.c +++ b/keyboards/umbra/solder/solder.c @@ -14,7 +14,15 @@ 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 <http://www.gnu.org/licenses/>. */ -#include "solder.h" +#include "quantum.h" + +#ifndef CAPS_LOCK_ENABLE +# define CAPS_LOCK_ENABLE true +#endif + +#ifndef CAPS_LOCK_COLOR +# define CAPS_LOCK_COLOR HSV_GREEN +#endif void keyboard_pre_init_kb(void) { rgblight_set_effect_range(0, 16); diff --git a/keyboards/umbra/solder/solder.h b/keyboards/umbra/solder/solder.h deleted file mode 100644 index 4a82a87a09..0000000000 --- a/keyboards/umbra/solder/solder.h +++ /dev/null @@ -1,22 +0,0 @@ -/* -Copyright 2024 Joseph Williams IV "IV Works" <josephawilliamsiv@gmail.com> - -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 <http://www.gnu.org/licenses/>. -*/ -#pragma once - -#include "quantum.h" - -#define CAPS_LOCK_ENABLE true -#define CAPS_LOCK_COLOR HSV_GREEN |