diff options
author | Nick Brassel <nick@tzarc.org> | 2023-02-28 11:22:29 +1100 |
---|---|---|
committer | Nick Brassel <nick@tzarc.org> | 2023-02-28 11:22:29 +1100 |
commit | bacec14073b2e897d5a52caf12de5a6a1f7b4078 (patch) | |
tree | d4e3e57aac1a829a191831efd2e62c8a43217885 /keyboards/bpiphany/pegasushoof/keymaps/via | |
parent | d70e9b8659a7fbbd7069fd542bd07e67e04327a1 (diff) | |
parent | b865b9e1706ad28ae4882bd2e0331e98808295fa (diff) |
Merge remote-tracking branch 'upstream/develop'
Diffstat (limited to 'keyboards/bpiphany/pegasushoof/keymaps/via')
-rw-r--r-- | keyboards/bpiphany/pegasushoof/keymaps/via/config.h | 18 | ||||
-rw-r--r-- | keyboards/bpiphany/pegasushoof/keymaps/via/keymap.c | 19 |
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; -} - |