summaryrefslogtreecommitdiff
path: root/keyboards/jadookb/jkb65/jkb65.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-09-21 22:51:54 -0700
committerGitHub <noreply@github.com>2021-09-21 22:51:54 -0700
commit5ddbabfa2a8ee7ce75dcbc30397eb5d588f9e51d (patch)
tree09399d4b70a2d701832468b1132fdf10345f9677 /keyboards/jadookb/jkb65/jkb65.c
parentea5735b0741764acab905e1137dab9de1e3cf5a6 (diff)
[Keyboard] Fix jkb65 compile issues (#14554)
Diffstat (limited to 'keyboards/jadookb/jkb65/jkb65.c')
-rw-r--r--keyboards/jadookb/jkb65/jkb65.c80
1 files changed, 16 insertions, 64 deletions
diff --git a/keyboards/jadookb/jkb65/jkb65.c b/keyboards/jadookb/jkb65/jkb65.c
index 1f22b30a79..aabdce7d20 100644
--- a/keyboards/jadookb/jkb65/jkb65.c
+++ b/keyboards/jadookb/jkb65/jkb65.c
@@ -1,17 +1,17 @@
- /* Copyright 2021 Wizard-GG
- *
- * 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/>.
+ /* Copyright 2021 Wizard-GG
+ *
+ * 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/>.
*/
#include "jkb65.h"
@@ -32,7 +32,7 @@ led_config_t g_led_config = { {
{ 6, 32}, { 26, 32}, { 41, 32}, { 56, 32}, { 71, 32}, { 86, 32}, {101, 32}, {116, 32}, {131, 32}, {146, 32}, {161, 32}, {176, 32}, {201, 32}, {225, 32}, // Capslock, A, S, D, F, G, H, J, K, L, ;, ', Enter, Page up
{ 9, 48}, { 34, 48}, { 49, 48}, { 64, 48}, { 79, 48}, { 94, 48}, {109, 48}, {124, 48}, {139, 48}, {154, 48}, {169, 48}, {189, 48}, {208, 48}, {225, 48}, // LShift, Z, X, C, V, B, N, M, ,, ., /, Shift, Up, Page Down
{ 2, 64}, { 21, 64}, { 39, 64}, { 94, 64}, {148, 64}, {163, 64}, {193, 64}, {208, 64}, {225, 64}, // Ctrl, GUI, Alt, Space, RAlt, FN, Ctrl, Left, Down, Right
-
+
}, {
// LED Index to Flag
1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, // Esc, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, -, =, Backspace, Delete
@@ -40,56 +40,8 @@ led_config_t g_led_config = { {
1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, // Capslock, A, S, D, F, G, H, J, K, L, ;, ', Enter, Page up
1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1, 1, 1, // LShift, Z, X, C, V, B, N, M, ,, ., /, Shift, Up, Page Down
1, 1, 1, 4, 1, 1, 1, 1, 1, // Ctrl, GUI, Alt, Space, Alt, FN, Left, Down, Right
-
-} };
-
-static uint16_t key_timer;
-static void refresh_rgb(void);
-static void check_rgb_timeout(void);
-bool is_rgb_timeout = false;
-
-
-void refresh_rgb() {
- key_timer = timer_read();
- if (is_rgb_timeout) {
-
- is_rgb_timeout = false;
- rgblight_wakeup();
- }
-}
-
-void check_rgb_timeout() {
- if (!is_rgb_timeout && timer_elapsed(key_timer) > RGBLIGHT_TIMEOUT) {
- rgblight_suspend();
- is_rgb_timeout = true;
- }
-}
-
-
-
-void housekeeping_task_kb(void) {
- #ifdef RGBLIGHT_TIMEOUT
- check_rgb_timeout();
- #endif
-
-}
-
-void post_process_record_kb(uint16_t keycode, keyrecord_t *record) {
-#ifdef RGBLIGHT_TIMEOUT
- if (record->event.pressed) { refresh_rgb(); }
-#endif
- post_process_record_user(keycode, record);
-}
-
-bool encoder_update_kb(uint8_t index, bool clockwise) {
-#ifdef RGBLIGHT_TIMEOUT
- refresh_rgb();
-#endif
-
- return encoder_update_user(index, clockwise);
-}
-
+} };
__attribute__ ((weak))