diff options
author | QMK Bot <hello@qmk.fm> | 2022-01-29 00:19:53 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-01-29 00:19:53 +0000 |
commit | 46e2caea78a91e896695c5a6c7437a5d69a878e4 (patch) | |
tree | b1d1da93547b94e1b806af4073108c56796c697f /keyboards/acheron/elongate/elongate.c | |
parent | 51ee8965a73a851ca30a3998dd20257c54b0702f (diff) | |
parent | bd8e257f842e40f01041706a217be2cf85ae7f92 (diff) |
Merge remote-tracking branch 'origin/master' into develop
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; -} |