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