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/lendunistus | |
| parent | e98c41c02f49be208c77a9be4906c2e0a18cbb52 (diff) | |
Remove redundant keyboard headers (#25208)
Diffstat (limited to 'keyboards/lendunistus')
| -rw-r--r-- | keyboards/lendunistus/rpneko65/rev1/config.h | 6 | ||||
| -rw-r--r-- | keyboards/lendunistus/rpneko65/rev1/rev1.c | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/keyboards/lendunistus/rpneko65/rev1/config.h b/keyboards/lendunistus/rpneko65/rev1/config.h deleted file mode 100644 index 6786155fbf..0000000000 --- a/keyboards/lendunistus/rpneko65/rev1/config.h +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2023 lendunistus -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#define CAPS_LOCK_ENABLE true diff --git a/keyboards/lendunistus/rpneko65/rev1/rev1.c b/keyboards/lendunistus/rpneko65/rev1/rev1.c index 2cb9cf07f8..a542dc6b31 100644 --- a/keyboards/lendunistus/rpneko65/rev1/rev1.c +++ b/keyboards/lendunistus/rpneko65/rev1/rev1.c @@ -16,6 +16,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "quantum.h" +#ifndef CAPS_LOCK_ENABLE +# define CAPS_LOCK_ENABLE true +#endif + bool led_update_kb(led_t led_state) { bool res = led_update_user(led_state); if (CAPS_LOCK_ENABLE && res) { |