summaryrefslogtreecommitdiff
path: root/keyboards/bpiphany/pegasushoof/keymaps/via
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bpiphany/pegasushoof/keymaps/via')
-rw-r--r--keyboards/bpiphany/pegasushoof/keymaps/via/config.h18
-rw-r--r--keyboards/bpiphany/pegasushoof/keymaps/via/keymap.c19
2 files changed, 2 insertions, 35 deletions
diff --git a/keyboards/bpiphany/pegasushoof/keymaps/via/config.h b/keyboards/bpiphany/pegasushoof/keymaps/via/config.h
deleted file mode 100644
index efa757f3c5..0000000000
--- a/keyboards/bpiphany/pegasushoof/keymaps/via/config.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Copyright 2023 Emrik Östling
- *
- * 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
-
-#define DYNAMIC_KEYMAP_LAYER_COUNT 2
diff --git a/keyboards/bpiphany/pegasushoof/keymaps/via/keymap.c b/keyboards/bpiphany/pegasushoof/keymaps/via/keymap.c
index 676468d5c1..b57a9fa0a8 100644
--- a/keyboards/bpiphany/pegasushoof/keymaps/via/keymap.c
+++ b/keyboards/bpiphany/pegasushoof/keymaps/via/keymap.c
@@ -1,4 +1,5 @@
-/* Copyright 2016 Daniel Svensson <dsvensson@gmail.com>
+/*!
+ * Copyright 2016 Daniel Svensson <dsvensson@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
@@ -40,19 +41,3 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
_______, _______, _______, _______, _______, _______, QK_BOOT, _______, KC_MPRV, KC_MSTP, KC_MNXT
)
};
-
-bool led_update_user(led_t led_state) {
- if (led_state.caps_lock) {
- ph_caps_led_on();
- } else {
- ph_caps_led_off();
- }
-
- if (led_state.scroll_lock) {
- ph_sclk_led_on();
- } else {
- ph_sclk_led_off();
- }
- return false;
-}
-