VIA Configurator Refactor (#7268)
[jackhill/qmk/firmware.git] / quantum / quantum.h
1 /* Copyright 2016-2018 Erez Zukerman, Jack Humbert, Yiancar
2 *
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.
7 *
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.
12 *
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/>.
15 */
16 #pragma once
17
18 #if defined(__AVR__)
19 # include <avr/pgmspace.h>
20 # include <avr/io.h>
21 # include <avr/interrupt.h>
22 #endif
23 #if defined(PROTOCOL_CHIBIOS)
24 # include "hal.h"
25 # include "chibios_config.h"
26 #endif
27
28 #include "wait.h"
29 #include "matrix.h"
30 #include "keymap.h"
31
32 #ifdef BACKLIGHT_ENABLE
33 # ifdef LED_MATRIX_ENABLE
34 # include "ledmatrix.h"
35 # else
36 # include "backlight.h"
37 # endif
38 #endif
39
40 #if defined(RGBLIGHT_ENABLE)
41 # include "rgblight.h"
42 #elif defined(RGB_MATRIX_ENABLE)
43 // Dummy define RGBLIGHT_MODE_xxxx
44 # define RGBLIGHT_H_DUMMY_DEFINE
45 # include "rgblight.h"
46 #endif
47
48 #ifdef RGB_MATRIX_ENABLE
49 # include "rgb_matrix.h"
50 #endif
51
52 #include "action_layer.h"
53 #include "eeconfig.h"
54 #include "bootloader.h"
55 #include "timer.h"
56 #include "config_common.h"
57 #include "led.h"
58 #include "action_util.h"
59 #include "print.h"
60 #include "send_string_keycodes.h"
61 #include "suspend.h"
62 #include <stddef.h>
63 #include <stdlib.h>
64
65 extern layer_state_t default_layer_state;
66
67 #ifndef NO_ACTION_LAYER
68 extern layer_state_t layer_state;
69 #endif
70
71 #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED)
72 # include "process_midi.h"
73 #endif
74
75 #ifdef AUDIO_ENABLE
76 # include "audio.h"
77 # include "process_audio.h"
78 # ifdef AUDIO_CLICKY
79 # include "process_clicky.h"
80 # endif
81 #endif
82
83 #ifdef STENO_ENABLE
84 # include "process_steno.h"
85 #endif
86
87 #if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))
88 # include "process_music.h"
89 #endif
90
91 #ifdef LEADER_ENABLE
92 # include "process_leader.h"
93 #endif
94
95 #ifdef UNICODE_ENABLE
96 # include "process_unicode.h"
97 #endif
98
99 #ifdef UCIS_ENABLE
100 # include "process_ucis.h"
101 #endif
102
103 #ifdef UNICODEMAP_ENABLE
104 # include "process_unicodemap.h"
105 #endif
106
107 #ifdef TAP_DANCE_ENABLE
108 # include "process_tap_dance.h"
109 #endif
110
111 #ifdef PRINTING_ENABLE
112 # include "process_printer.h"
113 #endif
114
115 #ifdef AUTO_SHIFT_ENABLE
116 # include "process_auto_shift.h"
117 #endif
118
119 #ifdef COMBO_ENABLE
120 # include "process_combo.h"
121 #endif
122
123 #ifdef KEY_LOCK_ENABLE
124 # include "process_key_lock.h"
125 #endif
126
127 #ifdef TERMINAL_ENABLE
128 # include "process_terminal.h"
129 #else
130 # include "process_terminal_nop.h"
131 #endif
132
133 #ifdef SPACE_CADET_ENABLE
134 # include "process_space_cadet.h"
135 #endif
136
137 #ifdef MAGIC_KEYCODE_ENABLE
138 # include "process_magic.h"
139 #endif
140
141 #if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
142 # include "process_rgb.h"
143 #endif
144
145 #ifdef HD44780_ENABLE
146 # include "hd44780.h"
147 #endif
148
149 #ifdef HAPTIC_ENABLE
150 # include "haptic.h"
151 #endif
152
153 #ifdef OLED_DRIVER_ENABLE
154 # include "oled_driver.h"
155 #endif
156
157 #ifdef DIP_SWITCH_ENABLE
158 # include "dip_switch.h"
159 #endif
160
161 #ifdef DYNAMIC_MACRO_ENABLE
162 # include "process_dynamic_macro.h"
163 #endif
164
165 #ifdef DYNAMIC_KEYMAP_ENABLE
166 # include "dynamic_keymap.h"
167 #endif
168
169 #ifdef VIA_ENABLE
170 # include "via.h"
171 #endif
172
173 // Function substitutions to ease GPIO manipulation
174 #if defined(__AVR__)
175 typedef uint8_t pin_t;
176
177 # define setPinInput(pin) (DDRx_ADDRESS(pin) &= ~_BV((pin)&0xF))
178 # define setPinInputHigh(pin) (DDRx_ADDRESS(pin) &= ~_BV((pin)&0xF), PORTx_ADDRESS(pin) |= _BV((pin)&0xF))
179 # define setPinInputLow(pin) _Static_assert(0, "AVR processors cannot implement an input as pull low")
180 # define setPinOutput(pin) (DDRx_ADDRESS(pin) |= _BV((pin)&0xF))
181
182 # define writePinHigh(pin) (PORTx_ADDRESS(pin) |= _BV((pin)&0xF))
183 # define writePinLow(pin) (PORTx_ADDRESS(pin) &= ~_BV((pin)&0xF))
184 # define writePin(pin, level) ((level) ? writePinHigh(pin) : writePinLow(pin))
185
186 # define readPin(pin) ((bool)(PINx_ADDRESS(pin) & _BV((pin)&0xF)))
187 #elif defined(PROTOCOL_CHIBIOS)
188 typedef ioline_t pin_t;
189
190 # define setPinInput(pin) palSetLineMode(pin, PAL_MODE_INPUT)
191 # define setPinInputHigh(pin) palSetLineMode(pin, PAL_MODE_INPUT_PULLUP)
192 # define setPinInputLow(pin) palSetLineMode(pin, PAL_MODE_INPUT_PULLDOWN)
193 # define setPinOutput(pin) palSetLineMode(pin, PAL_MODE_OUTPUT_PUSHPULL)
194
195 # define writePinHigh(pin) palSetLine(pin)
196 # define writePinLow(pin) palClearLine(pin)
197 # define writePin(pin, level) ((level) ? writePinHigh(pin) : writePinLow(pin))
198
199 # define readPin(pin) palReadLine(pin)
200 #endif
201
202 #define SEND_STRING(string) send_string_P(PSTR(string))
203 #define SEND_STRING_DELAY(string, interval) send_string_with_delay_P(PSTR(string), interval)
204
205 extern const bool ascii_to_shift_lut[128];
206 extern const bool ascii_to_altgr_lut[128];
207 extern const uint8_t ascii_to_keycode_lut[128];
208
209 void send_string(const char *str);
210 void send_string_with_delay(const char *str, uint8_t interval);
211 void send_string_P(const char *str);
212 void send_string_with_delay_P(const char *str, uint8_t interval);
213 void send_char(char ascii_code);
214
215 // For tri-layer
216 void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3);
217 layer_state_t update_tri_layer_state(layer_state_t state, uint8_t layer1, uint8_t layer2, uint8_t layer3);
218
219 void set_single_persistent_default_layer(uint8_t default_layer);
220
221 void tap_random_base64(void);
222
223 #define IS_LAYER_ON(layer) (layer_state & (1UL << (layer)))
224 #define IS_LAYER_OFF(layer) (~layer_state & (1UL << (layer)))
225
226 void matrix_init_kb(void);
227 void matrix_scan_kb(void);
228 void matrix_init_user(void);
229 void matrix_scan_user(void);
230 uint16_t get_record_keycode(keyrecord_t *record);
231 uint16_t get_event_keycode(keyevent_t event);
232 bool process_action_kb(keyrecord_t *record);
233 bool process_record_kb(uint16_t keycode, keyrecord_t *record);
234 bool process_record_user(uint16_t keycode, keyrecord_t *record);
235
236 #ifndef BOOTMAGIC_LITE_COLUMN
237 # define BOOTMAGIC_LITE_COLUMN 0
238 #endif
239 #ifndef BOOTMAGIC_LITE_ROW
240 # define BOOTMAGIC_LITE_ROW 0
241 #endif
242
243 void bootmagic_lite(void);
244
245 void reset_keyboard(void);
246
247 void startup_user(void);
248 void shutdown_user(void);
249
250 void register_code16(uint16_t code);
251 void unregister_code16(uint16_t code);
252 void tap_code16(uint16_t code);
253
254 #ifdef BACKLIGHT_ENABLE
255 void backlight_init_ports(void);
256 void backlight_task(void);
257 void backlight_task_internal(void);
258 void backlight_on(pin_t backlight_pin);
259 void backlight_off(pin_t backlight_pin);
260
261 # ifdef BACKLIGHT_BREATHING
262 void breathing_task(void);
263 void breathing_enable(void);
264 void breathing_pulse(void);
265 void breathing_disable(void);
266 void breathing_self_disable(void);
267 void breathing_toggle(void);
268 bool is_breathing(void);
269
270 void breathing_intensity_default(void);
271 void breathing_period_default(void);
272 void breathing_period_set(uint8_t value);
273 void breathing_period_inc(void);
274 void breathing_period_dec(void);
275 # endif
276 #endif
277
278 void send_dword(uint32_t number);
279 void send_word(uint16_t number);
280 void send_byte(uint8_t number);
281 void send_nibble(uint8_t number);
282 uint16_t hex_to_keycode(uint8_t hex);
283
284 void led_set_user(uint8_t usb_led);
285 void led_set_kb(uint8_t usb_led);
286 bool led_update_user(led_t led_state);
287 bool led_update_kb(led_t led_state);
288
289 void api_send_unicode(uint32_t unicode);