1 /* Copyright 2016 Jack Humbert
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #include "process_leader.h"
19 __attribute__ ((weak))
20 void leader_start(void) {}
22 __attribute__ ((weak))
23 void leader_end(void) {}
27 uint16_t leader_time = 0;
29 uint16_t leader_sequence[5] = {0, 0, 0, 0, 0};
30 uint8_t leader_sequence_size = 0;
32 bool process_leader(uint16_t keycode, keyrecord_t *record) {
34 if (record->event.pressed) {
35 if (!leading && keycode == KC_LEAD) {
38 leader_time = timer_read();
39 leader_sequence_size = 0;
40 leader_sequence[0] = 0;
41 leader_sequence[1] = 0;
42 leader_sequence[2] = 0;
43 leader_sequence[3] = 0;
44 leader_sequence[4] = 0;
47 if (leading && timer_elapsed(leader_time) < LEADER_TIMEOUT) {
48 leader_sequence[leader_sequence_size] = keycode;
49 leader_sequence_size++;