summaryrefslogtreecommitdiff
path: root/keyboards/acheron/elongate/elongate.c
diff options
context:
space:
mode:
authorÁlvaro A. Volpato <alvaro.volpato@usp.br>2022-01-28 21:19:11 -0300
committerGitHub <noreply@github.com>2022-01-28 16:19:11 -0800
commitbd8e257f842e40f01041706a217be2cf85ae7f92 (patch)
treefd8edb6e8b86ac83d311af009535f23637e7a715 /keyboards/acheron/elongate/elongate.c
parentdb56db2f798a83a7736fc7681c1fb58070dd7511 (diff)
[Keyboard] Adds Elongate Revision Delta PCB support (#15498)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/acheron/elongate/elongate.c')
-rw-r--r--keyboards/acheron/elongate/elongate.c14
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;
-}