]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/quantum.h
Integrating Peter Fleury's HD44780 LCD library (#3209)
[qmk_firmware.git] / quantum / quantum.h
1 /* Copyright 2016-2017 Erez Zukerman, Jack Humbert
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 #ifndef QUANTUM_H
17 #define QUANTUM_H
18
19 #if defined(__AVR__)
20 #include <avr/pgmspace.h>
21 #include <avr/io.h>
22 #include <avr/interrupt.h>
23 #endif
24 #include "wait.h"
25 #include "matrix.h"
26 #include "keymap.h"
27 #ifdef BACKLIGHT_ENABLE
28     #include "backlight.h"
29 #endif
30 #if !defined(RGBLIGHT_ENABLE) && !defined(RGB_MATRIX_ENABLE) 
31         #include "rgb.h"
32 #endif
33 #ifdef RGBLIGHT_ENABLE
34   #include "rgblight.h"
35 #endif
36 #ifdef RGB_MATRIX_ENABLE
37         #include "rgb_matrix.h"
38 #endif
39 #include "action_layer.h"
40 #include "eeconfig.h"
41 #include <stddef.h>
42 #include "bootloader.h"
43 #include "timer.h"
44 #include "config_common.h"
45 #include "led.h"
46 #include "action_util.h"
47 #include <stdlib.h>
48 #include "print.h"
49 #include "send_string_keycodes.h"
50
51 extern uint32_t default_layer_state;
52
53 #ifndef NO_ACTION_LAYER
54         extern uint32_t layer_state;
55 #endif
56
57 #ifdef MIDI_ENABLE
58 #ifdef MIDI_ADVANCED
59         #include "process_midi.h"
60 #endif
61 #endif // MIDI_ENABLE
62
63 #ifdef AUDIO_ENABLE
64         #include "audio.h"
65         #include "process_audio.h"
66   #ifdef AUDIO_CLICKY
67     #include "process_clicky.h"
68   #endif // AUDIO_CLICKY
69 #endif
70
71 #ifdef STENO_ENABLE
72         #include "process_steno.h"
73 #endif
74
75 #if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))
76         #include "process_music.h"
77 #endif
78
79 #ifndef DISABLE_LEADER
80         #include "process_leader.h"
81 #endif
82
83 #define DISABLE_CHORDING
84 #ifndef DISABLE_CHORDING
85         #include "process_chording.h"
86 #endif
87
88 #ifdef UNICODE_ENABLE
89         #include "process_unicode.h"
90 #endif
91
92 #ifdef UCIS_ENABLE
93         #include "process_ucis.h"
94 #endif
95
96 #ifdef UNICODEMAP_ENABLE
97         #include "process_unicodemap.h"
98 #endif
99
100 #include "process_tap_dance.h"
101
102 #ifdef PRINTING_ENABLE
103         #include "process_printer.h"
104 #endif
105
106 #ifdef AUTO_SHIFT_ENABLE
107         #include "process_auto_shift.h"
108 #endif
109
110 #ifdef COMBO_ENABLE
111         #include "process_combo.h"
112 #endif
113
114 #ifdef KEY_LOCK_ENABLE
115         #include "process_key_lock.h"
116 #endif
117
118 #ifdef TERMINAL_ENABLE
119         #include "process_terminal.h"
120 #else
121         #include "process_terminal_nop.h"
122 #endif
123
124 #ifdef HD44780_ENABLE
125         #include "hd44780.h"
126 #endif
127
128 #define STRINGIZE(z) #z
129 #define ADD_SLASH_X(y) STRINGIZE(\x ## y)
130 #define SYMBOL_STR(x) ADD_SLASH_X(x)
131
132 #define SS_TAP(keycode) "\1" SYMBOL_STR(keycode)
133 #define SS_DOWN(keycode) "\2" SYMBOL_STR(keycode)
134 #define SS_UP(keycode) "\3" SYMBOL_STR(keycode)
135
136 #define SS_LCTRL(string) SS_DOWN(X_LCTRL) string SS_UP(X_LCTRL)
137 #define SS_LGUI(string) SS_DOWN(X_LGUI) string SS_UP(X_LGUI)
138 #define SS_LCMD(string) SS_LGUI(string)
139 #define SS_LWIN(string) SS_LGUI(string)
140 #define SS_LALT(string) SS_DOWN(X_LALT) string SS_UP(X_LALT)
141 #define SS_LSFT(string) SS_DOWN(X_LSHIFT) string SS_UP(X_LSHIFT)
142 #define SS_RALT(string) SS_DOWN(X_RALT) string SS_UP(X_RALT)
143
144 #define SEND_STRING(str) send_string_P(PSTR(str))
145 extern const bool ascii_to_shift_lut[0x80];
146 extern const uint8_t ascii_to_keycode_lut[0x80];
147 void send_string(const char *str);
148 void send_string_with_delay(const char *str, uint8_t interval);
149 void send_string_P(const char *str);
150 void send_string_with_delay_P(const char *str, uint8_t interval);
151 void send_char(char ascii_code);
152
153 // For tri-layer
154 void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3);
155 uint32_t update_tri_layer_state(uint32_t state, uint8_t layer1, uint8_t layer2, uint8_t layer3);
156
157 void set_single_persistent_default_layer(uint8_t default_layer);
158
159 void tap_random_base64(void);
160
161 #define IS_LAYER_ON(layer)  (layer_state & (1UL << (layer)))
162 #define IS_LAYER_OFF(layer) (~layer_state & (1UL << (layer)))
163
164 void matrix_init_kb(void);
165 void matrix_scan_kb(void);
166 void matrix_init_user(void);
167 void matrix_scan_user(void);
168 bool process_action_kb(keyrecord_t *record);
169 bool process_record_kb(uint16_t keycode, keyrecord_t *record);
170 bool process_record_user(uint16_t keycode, keyrecord_t *record);
171
172 void reset_keyboard(void);
173
174 void startup_user(void);
175 void shutdown_user(void);
176
177 void register_code16 (uint16_t code);
178 void unregister_code16 (uint16_t code);
179
180 #ifdef BACKLIGHT_ENABLE
181 void backlight_init_ports(void);
182 void backlight_task(void);
183
184 #ifdef BACKLIGHT_BREATHING
185 void breathing_enable(void);
186 void breathing_pulse(void);
187 void breathing_disable(void);
188 void breathing_self_disable(void);
189 void breathing_toggle(void);
190 bool is_breathing(void);
191
192 void breathing_intensity_default(void);
193 void breathing_period_default(void);
194 void breathing_period_set(uint8_t value);
195 void breathing_period_inc(void);
196 void breathing_period_dec(void);
197 #endif
198
199 #endif
200 void send_dword(uint32_t number);
201 void send_word(uint16_t number);
202 void send_byte(uint8_t number);
203 void send_nibble(uint8_t number);
204 uint16_t hex_to_keycode(uint8_t hex);
205
206 void led_set_user(uint8_t usb_led);
207 void led_set_kb(uint8_t usb_led);
208
209 void api_send_unicode(uint32_t unicode);
210
211 #endif