]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/quantum.h
Add central location for ChibiOS defines (#7542)
[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 // Function substitutions to ease GPIO manipulation
166 #if defined(__AVR__)
167 typedef uint8_t pin_t;
168
169 #    define setPinInput(pin) (DDRx_ADDRESS(pin) &= ~_BV((pin)&0xF))
170 #    define setPinInputHigh(pin) (DDRx_ADDRESS(pin) &= ~_BV((pin)&0xF), PORTx_ADDRESS(pin) |= _BV((pin)&0xF))
171 #    define setPinInputLow(pin) _Static_assert(0, "AVR processors cannot implement an input as pull low")
172 #    define setPinOutput(pin) (DDRx_ADDRESS(pin) |= _BV((pin)&0xF))
173
174 #    define writePinHigh(pin) (PORTx_ADDRESS(pin) |= _BV((pin)&0xF))
175 #    define writePinLow(pin) (PORTx_ADDRESS(pin) &= ~_BV((pin)&0xF))
176 #    define writePin(pin, level) ((level) ? writePinHigh(pin) : writePinLow(pin))
177
178 #    define readPin(pin) ((bool)(PINx_ADDRESS(pin) & _BV((pin)&0xF)))
179 #elif defined(PROTOCOL_CHIBIOS)
180 typedef ioline_t pin_t;
181
182 #    define setPinInput(pin) palSetLineMode(pin, PAL_MODE_INPUT)
183 #    define setPinInputHigh(pin) palSetLineMode(pin, PAL_MODE_INPUT_PULLUP)
184 #    define setPinInputLow(pin) palSetLineMode(pin, PAL_MODE_INPUT_PULLDOWN)
185 #    define setPinOutput(pin) palSetLineMode(pin, PAL_MODE_OUTPUT_PUSHPULL)
186
187 #    define writePinHigh(pin) palSetLine(pin)
188 #    define writePinLow(pin) palClearLine(pin)
189 #    define writePin(pin, level) ((level) ? writePinHigh(pin) : writePinLow(pin))
190
191 #    define readPin(pin) palReadLine(pin)
192 #endif
193
194 #define SEND_STRING(string) send_string_P(PSTR(string))
195 #define SEND_STRING_DELAY(string, interval) send_string_with_delay_P(PSTR(string), interval)
196
197 extern const bool    ascii_to_shift_lut[128];
198 extern const bool    ascii_to_altgr_lut[128];
199 extern const uint8_t ascii_to_keycode_lut[128];
200
201 void send_string(const char *str);
202 void send_string_with_delay(const char *str, uint8_t interval);
203 void send_string_P(const char *str);
204 void send_string_with_delay_P(const char *str, uint8_t interval);
205 void send_char(char ascii_code);
206
207 // For tri-layer
208 void          update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3);
209 layer_state_t update_tri_layer_state(layer_state_t state, uint8_t layer1, uint8_t layer2, uint8_t layer3);
210
211 void set_single_persistent_default_layer(uint8_t default_layer);
212
213 void tap_random_base64(void);
214
215 #define IS_LAYER_ON(layer) (layer_state & (1UL << (layer)))
216 #define IS_LAYER_OFF(layer) (~layer_state & (1UL << (layer)))
217
218 void     matrix_init_kb(void);
219 void     matrix_scan_kb(void);
220 void     matrix_init_user(void);
221 void     matrix_scan_user(void);
222 uint16_t get_record_keycode(keyrecord_t *record);
223 uint16_t get_event_keycode(keyevent_t event);
224 bool     process_action_kb(keyrecord_t *record);
225 bool     process_record_kb(uint16_t keycode, keyrecord_t *record);
226 bool     process_record_user(uint16_t keycode, keyrecord_t *record);
227
228 #ifndef BOOTMAGIC_LITE_COLUMN
229 #    define BOOTMAGIC_LITE_COLUMN 0
230 #endif
231 #ifndef BOOTMAGIC_LITE_ROW
232 #    define BOOTMAGIC_LITE_ROW 0
233 #endif
234
235 void bootmagic_lite(void);
236
237 void reset_keyboard(void);
238
239 void startup_user(void);
240 void shutdown_user(void);
241
242 void register_code16(uint16_t code);
243 void unregister_code16(uint16_t code);
244 void tap_code16(uint16_t code);
245
246 #ifdef BACKLIGHT_ENABLE
247 void backlight_init_ports(void);
248 void backlight_task(void);
249 void backlight_task_internal(void);
250 void backlight_on(pin_t backlight_pin);
251 void backlight_off(pin_t backlight_pin);
252
253 #    ifdef BACKLIGHT_BREATHING
254 void breathing_task(void);
255 void breathing_enable(void);
256 void breathing_pulse(void);
257 void breathing_disable(void);
258 void breathing_self_disable(void);
259 void breathing_toggle(void);
260 bool is_breathing(void);
261
262 void breathing_intensity_default(void);
263 void breathing_period_default(void);
264 void breathing_period_set(uint8_t value);
265 void breathing_period_inc(void);
266 void breathing_period_dec(void);
267 #    endif
268 #endif
269
270 void     send_dword(uint32_t number);
271 void     send_word(uint16_t number);
272 void     send_byte(uint8_t number);
273 void     send_nibble(uint8_t number);
274 uint16_t hex_to_keycode(uint8_t hex);
275
276 void led_set_user(uint8_t usb_led);
277 void led_set_kb(uint8_t usb_led);
278 bool led_update_user(led_t led_state);
279 bool led_update_kb(led_t led_state);
280
281 void api_send_unicode(uint32_t unicode);