diff options
Diffstat (limited to 'keyboards/acheron/elongate/elongate.c')
-rw-r--r-- | keyboards/acheron/elongate/elongate.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/keyboards/acheron/elongate/elongate.c b/keyboards/acheron/elongate/elongate.c index 31c4720360..9bf0d893a9 100644 --- a/keyboards/acheron/elongate/elongate.c +++ b/keyboards/acheron/elongate/elongate.c @@ -1,4 +1,4 @@ -/* Copyright 2020 Gondolindrim +/* Copyright 2021 Gondolindrim * * 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 @@ -9,18 +9,6 @@ * 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/>. */ #include "elongate.h" -bool led_update_kb(led_t led_state) { - bool res = led_update_user(led_state); - if(res) { - writePin(D2, led_state.num_lock); - writePin(D1, led_state.caps_lock); - writePin(D0, led_state.scroll_lock); - } - return res; -} |