]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/quantum.c
44635fe3e17fb4ec1c7a432e9266ec4d297b9ef8
[qmk_firmware.git] / quantum / quantum.c
1 /* Copyright 2016-2017 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
17 #include "quantum.h"
18
19 #if !defined(RGBLIGHT_ENABLE) && !defined(RGB_MATRIX_ENABLE)
20         #include "rgb.h"
21 #endif
22
23 #ifdef PROTOCOL_LUFA
24 #include "outputselect.h"
25 #endif
26
27 #ifndef BREATHING_PERIOD
28 #define BREATHING_PERIOD 6
29 #endif
30
31 #include "backlight.h"
32 extern backlight_config_t backlight_config;
33
34 #ifdef FAUXCLICKY_ENABLE
35 #include "fauxclicky.h"
36 #endif
37
38 #ifdef API_ENABLE
39 #include "api.h"
40 #endif
41
42 #ifdef MIDI_ENABLE
43 #include "process_midi.h"
44 #endif
45
46 #ifdef VELOCIKEY_ENABLE
47 #include "velocikey.h"
48 #endif
49
50 #ifdef HAPTIC_ENABLE
51     #include "haptic.h"
52 #endif
53
54 #ifdef ENCODER_ENABLE
55 #include "encoder.h"
56 #endif
57
58 #ifdef AUDIO_ENABLE
59   #ifndef GOODBYE_SONG
60     #define GOODBYE_SONG SONG(GOODBYE_SOUND)
61   #endif
62   #ifndef AG_NORM_SONG
63     #define AG_NORM_SONG SONG(AG_NORM_SOUND)
64   #endif
65   #ifndef AG_SWAP_SONG
66     #define AG_SWAP_SONG SONG(AG_SWAP_SOUND)
67   #endif
68   float goodbye_song[][2] = GOODBYE_SONG;
69   float ag_norm_song[][2] = AG_NORM_SONG;
70   float ag_swap_song[][2] = AG_SWAP_SONG;
71   #ifdef DEFAULT_LAYER_SONGS
72     float default_layer_songs[][16][2] = DEFAULT_LAYER_SONGS;
73   #endif
74 #endif
75
76 static void do_code16 (uint16_t code, void (*f) (uint8_t)) {
77   switch (code) {
78   case QK_MODS ... QK_MODS_MAX:
79     break;
80   default:
81     return;
82   }
83
84   if (code & QK_LCTL)
85     f(KC_LCTL);
86   if (code & QK_LSFT)
87     f(KC_LSFT);
88   if (code & QK_LALT)
89     f(KC_LALT);
90   if (code & QK_LGUI)
91     f(KC_LGUI);
92
93   if (code < QK_RMODS_MIN) return;
94
95   if (code & QK_RCTL)
96     f(KC_RCTL);
97   if (code & QK_RSFT)
98     f(KC_RSFT);
99   if (code & QK_RALT)
100     f(KC_RALT);
101   if (code & QK_RGUI)
102     f(KC_RGUI);
103 }
104
105 static inline void qk_register_weak_mods(uint8_t kc) {
106     add_weak_mods(MOD_BIT(kc));
107     send_keyboard_report();
108 }
109
110 static inline void qk_unregister_weak_mods(uint8_t kc) {
111     del_weak_mods(MOD_BIT(kc));
112     send_keyboard_report();
113 }
114
115 static inline void qk_register_mods(uint8_t kc) {
116     add_weak_mods(MOD_BIT(kc));
117     send_keyboard_report();
118 }
119
120 static inline void qk_unregister_mods(uint8_t kc) {
121     del_weak_mods(MOD_BIT(kc));
122     send_keyboard_report();
123 }
124
125 void register_code16 (uint16_t code) {
126   if (IS_MOD(code) || code == KC_NO) {
127       do_code16 (code, qk_register_mods);
128   } else {
129       do_code16 (code, qk_register_weak_mods);
130   }
131   register_code (code);
132 }
133
134 void unregister_code16 (uint16_t code) {
135   unregister_code (code);
136   if (IS_MOD(code) || code == KC_NO) {
137       do_code16 (code, qk_unregister_mods);
138   } else {
139       do_code16 (code, qk_unregister_weak_mods);
140   }
141 }
142
143 void tap_code16(uint16_t code) {
144   register_code16(code);
145   #if TAP_CODE_DELAY > 0
146     wait_ms(TAP_CODE_DELAY);
147   #endif
148   unregister_code16(code);
149 }
150
151 __attribute__ ((weak))
152 bool process_action_kb(keyrecord_t *record) {
153   return true;
154 }
155
156 __attribute__ ((weak))
157 bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
158   return process_record_user(keycode, record);
159 }
160
161 __attribute__ ((weak))
162 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
163   return true;
164 }
165
166 void reset_keyboard(void) {
167   clear_keyboard();
168 #if defined(MIDI_ENABLE) && defined(MIDI_BASIC)
169   process_midi_all_notes_off();
170 #endif
171 #ifdef AUDIO_ENABLE
172   #ifndef NO_MUSIC_MODE
173     music_all_notes_off();
174   #endif
175   uint16_t timer_start = timer_read();
176   PLAY_SONG(goodbye_song);
177   shutdown_user();
178   while(timer_elapsed(timer_start) < 250)
179     wait_ms(1);
180   stop_all_notes();
181 #else
182   shutdown_user();
183   wait_ms(250);
184 #endif
185 #ifdef HAPTIC_ENABLE
186   haptic_shutdown();
187 #endif
188 // this is also done later in bootloader.c - not sure if it's neccesary here
189 #ifdef BOOTLOADER_CATERINA
190   *(uint16_t *)0x0800 = 0x7777; // these two are a-star-specific
191 #endif
192   bootloader_jump();
193 }
194
195 /* true if the last press of GRAVE_ESC was shifted (i.e. GUI or SHIFT were pressed), false otherwise.
196  * Used to ensure that the correct keycode is released if the key is released.
197  */
198 static bool grave_esc_was_shifted = false;
199
200 /* Convert record into usable keycode via the contained event. */
201 uint16_t get_record_keycode(keyrecord_t *record) {
202   return get_event_keycode(record->event);
203 }
204
205
206 /* Convert event into usable keycode. Checks the layer cache to ensure that it
207  * retains the correct keycode after a layer change, if the key is still pressed.
208  */
209 uint16_t get_event_keycode(keyevent_t event) {
210
211   #if !defined(NO_ACTION_LAYER) && !defined(STRICT_LAYER_RELEASE)
212     /* TODO: Use store_or_get_action() or a similar function. */
213     if (!disable_action_cache) {
214       uint8_t layer;
215
216       if (event.pressed) {
217         layer = layer_switch_get_layer(event.key);
218         update_source_layers_cache(event.key, layer);
219       } else {
220         layer = read_source_layers_cache(event.key);
221       }
222       return keymap_key_to_keycode(layer, event.key);
223     } else
224   #endif
225     return keymap_key_to_keycode(layer_switch_get_layer(event.key), event.key);
226 }
227
228 /* Main keycode processing function. Hands off handling to other functions,
229  * then processes internal Quantum keycodes, then processes ACTIONs.
230  */
231 bool process_record_quantum(keyrecord_t *record) {
232     uint16_t keycode = get_record_keycode(record);
233
234     // This is how you use actions here
235     // if (keycode == KC_LEAD) {
236     //   action_t action;
237     //   action.code = ACTION_DEFAULT_LAYER_SET(0);
238     //   process_action(record, action);
239     //   return false;
240     // }
241
242   #ifdef VELOCIKEY_ENABLE
243     if (velocikey_enabled() && record->event.pressed) { velocikey_accelerate(); }
244   #endif
245
246   #ifdef TAP_DANCE_ENABLE
247     preprocess_tap_dance(keycode, record);
248   #endif
249
250   if (!(
251   #if defined(KEY_LOCK_ENABLE)
252     // Must run first to be able to mask key_up events.
253     process_key_lock(&keycode, record) &&
254   #endif
255   #if defined(AUDIO_ENABLE) && defined(AUDIO_CLICKY)
256     process_clicky(keycode, record) &&
257   #endif //AUDIO_CLICKY
258   #ifdef HAPTIC_ENABLE
259     process_haptic(keycode, record) &&
260   #endif //HAPTIC_ENABLE
261   #if defined(RGB_MATRIX_ENABLE)
262     process_rgb_matrix(keycode, record) &&
263   #endif
264     process_record_kb(keycode, record) &&
265   #if defined(MIDI_ENABLE) && defined(MIDI_ADVANCED)
266     process_midi(keycode, record) &&
267   #endif
268   #ifdef AUDIO_ENABLE
269     process_audio(keycode, record) &&
270   #endif
271   #ifdef STENO_ENABLE
272     process_steno(keycode, record) &&
273   #endif
274   #if (defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))) && !defined(NO_MUSIC_MODE)
275     process_music(keycode, record) &&
276   #endif
277   #ifdef TAP_DANCE_ENABLE
278     process_tap_dance(keycode, record) &&
279   #endif
280   #if defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE)
281     process_unicode_common(keycode, record) &&
282   #endif
283   #ifdef LEADER_ENABLE
284     process_leader(keycode, record) &&
285   #endif
286   #ifdef COMBO_ENABLE
287     process_combo(keycode, record) &&
288   #endif
289   #ifdef PRINTING_ENABLE
290     process_printer(keycode, record) &&
291   #endif
292   #ifdef AUTO_SHIFT_ENABLE
293     process_auto_shift(keycode, record) &&
294   #endif
295   #ifdef TERMINAL_ENABLE
296     process_terminal(keycode, record) &&
297   #endif
298   #ifdef SPACE_CADET_ENABLE
299     process_space_cadet(keycode, record) &&
300   #endif
301       true)) {
302     return false;
303   }
304
305   // Shift / paren setup
306
307   switch(keycode) {
308     case RESET:
309       if (record->event.pressed) {
310         reset_keyboard();
311       }
312     return false;
313     case DEBUG:
314       if (record->event.pressed) {
315         debug_enable ^= 1;
316         if (debug_enable) {
317           print("DEBUG: enabled.\n");
318         } else {
319           print("DEBUG: disabled.\n");
320         }
321       }
322     return false;
323     case EEPROM_RESET:
324       if (record->event.pressed) {
325           eeconfig_init();
326       }
327     return false;
328   #ifdef FAUXCLICKY_ENABLE
329   case FC_TOG:
330     if (record->event.pressed) {
331       FAUXCLICKY_TOGGLE;
332     }
333     return false;
334   case FC_ON:
335     if (record->event.pressed) {
336       FAUXCLICKY_ON;
337     }
338     return false;
339   case FC_OFF:
340     if (record->event.pressed) {
341       FAUXCLICKY_OFF;
342     }
343     return false;
344   #endif
345   #if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
346   case RGB_TOG:
347     // Split keyboards need to trigger on key-up for edge-case issue
348     #ifndef SPLIT_KEYBOARD
349     if (record->event.pressed) {
350     #else
351     if (!record->event.pressed) {
352     #endif
353       rgblight_toggle();
354     }
355     return false;
356   case RGB_MODE_FORWARD:
357     if (record->event.pressed) {
358       uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT));
359       if(shifted) {
360         rgblight_step_reverse();
361       }
362       else {
363         rgblight_step();
364       }
365     }
366     return false;
367   case RGB_MODE_REVERSE:
368     if (record->event.pressed) {
369       uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT));
370       if(shifted) {
371         rgblight_step();
372       }
373       else {
374         rgblight_step_reverse();
375       }
376     }
377     return false;
378   case RGB_HUI:
379     // Split keyboards need to trigger on key-up for edge-case issue
380     #ifndef SPLIT_KEYBOARD
381     if (record->event.pressed) {
382     #else
383     if (!record->event.pressed) {
384     #endif
385       rgblight_increase_hue();
386     }
387     return false;
388   case RGB_HUD:
389     // Split keyboards need to trigger on key-up for edge-case issue
390     #ifndef SPLIT_KEYBOARD
391     if (record->event.pressed) {
392     #else
393     if (!record->event.pressed) {
394     #endif
395       rgblight_decrease_hue();
396     }
397     return false;
398   case RGB_SAI:
399     // Split keyboards need to trigger on key-up for edge-case issue
400     #ifndef SPLIT_KEYBOARD
401     if (record->event.pressed) {
402     #else
403     if (!record->event.pressed) {
404     #endif
405       rgblight_increase_sat();
406     }
407     return false;
408   case RGB_SAD:
409     // Split keyboards need to trigger on key-up for edge-case issue
410     #ifndef SPLIT_KEYBOARD
411     if (record->event.pressed) {
412     #else
413     if (!record->event.pressed) {
414     #endif
415       rgblight_decrease_sat();
416     }
417     return false;
418   case RGB_VAI:
419     // Split keyboards need to trigger on key-up for edge-case issue
420     #ifndef SPLIT_KEYBOARD
421     if (record->event.pressed) {
422     #else
423     if (!record->event.pressed) {
424     #endif
425       rgblight_increase_val();
426     }
427     return false;
428   case RGB_VAD:
429     // Split keyboards need to trigger on key-up for edge-case issue
430     #ifndef SPLIT_KEYBOARD
431     if (record->event.pressed) {
432     #else
433     if (!record->event.pressed) {
434     #endif
435       rgblight_decrease_val();
436     }
437     return false;
438   case RGB_SPI:
439     if (record->event.pressed) {
440       rgblight_increase_speed();
441     }
442     return false;
443   case RGB_SPD:
444     if (record->event.pressed) {
445       rgblight_decrease_speed();
446     }
447     return false;
448   case RGB_MODE_PLAIN:
449     if (record->event.pressed) {
450       rgblight_mode(RGBLIGHT_MODE_STATIC_LIGHT);
451     }
452     return false;
453   case RGB_MODE_BREATHE:
454   #ifdef RGBLIGHT_EFFECT_BREATHING
455     if (record->event.pressed) {
456       if ((RGBLIGHT_MODE_BREATHING <= rgblight_get_mode()) &&
457           (rgblight_get_mode() < RGBLIGHT_MODE_BREATHING_end)) {
458         rgblight_step();
459       } else {
460         rgblight_mode(RGBLIGHT_MODE_BREATHING);
461       }
462     }
463   #endif
464     return false;
465   case RGB_MODE_RAINBOW:
466   #ifdef RGBLIGHT_EFFECT_RAINBOW_MOOD
467     if (record->event.pressed) {
468       if ((RGBLIGHT_MODE_RAINBOW_MOOD <= rgblight_get_mode()) &&
469           (rgblight_get_mode() < RGBLIGHT_MODE_RAINBOW_MOOD_end)) {
470         rgblight_step();
471       } else {
472         rgblight_mode(RGBLIGHT_MODE_RAINBOW_MOOD);
473       }
474     }
475   #endif
476     return false;
477   case RGB_MODE_SWIRL:
478   #ifdef RGBLIGHT_EFFECT_RAINBOW_SWIRL
479     if (record->event.pressed) {
480       if ((RGBLIGHT_MODE_RAINBOW_SWIRL <= rgblight_get_mode()) &&
481           (rgblight_get_mode() < RGBLIGHT_MODE_RAINBOW_SWIRL_end)) {
482         rgblight_step();
483       } else {
484         rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL);
485       }
486     }
487   #endif
488     return false;
489   case RGB_MODE_SNAKE:
490   #ifdef RGBLIGHT_EFFECT_SNAKE
491     if (record->event.pressed) {
492       if ((RGBLIGHT_MODE_SNAKE <= rgblight_get_mode()) &&
493           (rgblight_get_mode() < RGBLIGHT_MODE_SNAKE_end)) {
494         rgblight_step();
495       } else {
496         rgblight_mode(RGBLIGHT_MODE_SNAKE);
497       }
498     }
499   #endif
500     return false;
501   case RGB_MODE_KNIGHT:
502   #ifdef RGBLIGHT_EFFECT_KNIGHT
503     if (record->event.pressed) {
504       if ((RGBLIGHT_MODE_KNIGHT <= rgblight_get_mode()) &&
505           (rgblight_get_mode() < RGBLIGHT_MODE_KNIGHT_end)) {
506         rgblight_step();
507       } else {
508         rgblight_mode(RGBLIGHT_MODE_KNIGHT);
509       }
510     }
511   #endif
512     return false;
513   case RGB_MODE_XMAS:
514   #ifdef RGBLIGHT_EFFECT_CHRISTMAS
515     if (record->event.pressed) {
516       rgblight_mode(RGBLIGHT_MODE_CHRISTMAS);
517     }
518   #endif
519     return false;
520   case RGB_MODE_GRADIENT:
521   #ifdef RGBLIGHT_EFFECT_STATIC_GRADIENT
522     if (record->event.pressed) {
523       if ((RGBLIGHT_MODE_STATIC_GRADIENT <= rgblight_get_mode()) &&
524           (rgblight_get_mode() < RGBLIGHT_MODE_STATIC_GRADIENT_end)) {
525         rgblight_step();
526       } else {
527         rgblight_mode(RGBLIGHT_MODE_STATIC_GRADIENT);
528       }
529     }
530   #endif
531     return false;
532   case RGB_MODE_RGBTEST:
533   #ifdef RGBLIGHT_EFFECT_RGB_TEST
534     if (record->event.pressed) {
535       rgblight_mode(RGBLIGHT_MODE_RGB_TEST);
536     }
537   #endif
538     return false;
539   #endif // defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
540   #ifdef VELOCIKEY_ENABLE
541     case VLK_TOG:
542       if (record->event.pressed) {
543         velocikey_toggle();
544       }
545       return false;
546   #endif
547   #ifdef PROTOCOL_LUFA
548     case OUT_AUTO:
549       if (record->event.pressed) {
550         set_output(OUTPUT_AUTO);
551       }
552       return false;
553     case OUT_USB:
554       if (record->event.pressed) {
555         set_output(OUTPUT_USB);
556       }
557       return false;
558     #ifdef BLUETOOTH_ENABLE
559     case OUT_BT:
560       if (record->event.pressed) {
561         set_output(OUTPUT_BLUETOOTH);
562       }
563       return false;
564     #endif
565     #endif
566     case MAGIC_SWAP_CONTROL_CAPSLOCK ... MAGIC_TOGGLE_NKRO:
567       if (record->event.pressed) {
568         // MAGIC actions (BOOTMAGIC without the boot)
569         if (!eeconfig_is_enabled()) {
570             eeconfig_init();
571         }
572         /* keymap config */
573         keymap_config.raw = eeconfig_read_keymap();
574         switch (keycode)
575         {
576           case MAGIC_SWAP_CONTROL_CAPSLOCK:
577             keymap_config.swap_control_capslock = true;
578             break;
579           case MAGIC_CAPSLOCK_TO_CONTROL:
580             keymap_config.capslock_to_control = true;
581             break;
582           case MAGIC_SWAP_LALT_LGUI:
583             keymap_config.swap_lalt_lgui = true;
584             break;
585           case MAGIC_SWAP_RALT_RGUI:
586             keymap_config.swap_ralt_rgui = true;
587             break;
588           case MAGIC_NO_GUI:
589             keymap_config.no_gui = true;
590             break;
591           case MAGIC_SWAP_GRAVE_ESC:
592             keymap_config.swap_grave_esc = true;
593             break;
594           case MAGIC_SWAP_BACKSLASH_BACKSPACE:
595             keymap_config.swap_backslash_backspace = true;
596             break;
597           case MAGIC_HOST_NKRO:
598             keymap_config.nkro = true;
599             break;
600           case MAGIC_SWAP_ALT_GUI:
601             keymap_config.swap_lalt_lgui = true;
602             keymap_config.swap_ralt_rgui = true;
603             #ifdef AUDIO_ENABLE
604               PLAY_SONG(ag_swap_song);
605             #endif
606             break;
607           case MAGIC_UNSWAP_CONTROL_CAPSLOCK:
608             keymap_config.swap_control_capslock = false;
609             break;
610           case MAGIC_UNCAPSLOCK_TO_CONTROL:
611             keymap_config.capslock_to_control = false;
612             break;
613           case MAGIC_UNSWAP_LALT_LGUI:
614             keymap_config.swap_lalt_lgui = false;
615             break;
616           case MAGIC_UNSWAP_RALT_RGUI:
617             keymap_config.swap_ralt_rgui = false;
618             break;
619           case MAGIC_UNNO_GUI:
620             keymap_config.no_gui = false;
621             break;
622           case MAGIC_UNSWAP_GRAVE_ESC:
623             keymap_config.swap_grave_esc = false;
624             break;
625           case MAGIC_UNSWAP_BACKSLASH_BACKSPACE:
626             keymap_config.swap_backslash_backspace = false;
627             break;
628           case MAGIC_UNHOST_NKRO:
629             keymap_config.nkro = false;
630             break;
631           case MAGIC_UNSWAP_ALT_GUI:
632             keymap_config.swap_lalt_lgui = false;
633             keymap_config.swap_ralt_rgui = false;
634             #ifdef AUDIO_ENABLE
635               PLAY_SONG(ag_norm_song);
636             #endif
637             break;
638           case MAGIC_TOGGLE_ALT_GUI:
639             keymap_config.swap_lalt_lgui = !keymap_config.swap_lalt_lgui;
640             keymap_config.swap_ralt_rgui = !keymap_config.swap_ralt_rgui;
641             #ifdef AUDIO_ENABLE
642               if (keymap_config.swap_ralt_rgui) {
643                 PLAY_SONG(ag_swap_song);
644               } else {
645                 PLAY_SONG(ag_norm_song);
646               }
647             #endif
648             break;
649           case MAGIC_TOGGLE_NKRO:
650             keymap_config.nkro = !keymap_config.nkro;
651             break;
652           default:
653             break;
654         }
655         eeconfig_update_keymap(keymap_config.raw);
656         clear_keyboard(); // clear to prevent stuck keys
657
658         return false;
659       }
660       break;
661
662     case GRAVE_ESC: {
663       uint8_t shifted = get_mods() & ((MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT)
664                                       |MOD_BIT(KC_LGUI)|MOD_BIT(KC_RGUI)));
665
666 #ifdef GRAVE_ESC_ALT_OVERRIDE
667       // if ALT is pressed, ESC is always sent
668       // this is handy for the cmd+opt+esc shortcut on macOS, among other things.
669       if (get_mods() & (MOD_BIT(KC_LALT) | MOD_BIT(KC_RALT))) {
670         shifted = 0;
671       }
672 #endif
673
674 #ifdef GRAVE_ESC_CTRL_OVERRIDE
675       // if CTRL is pressed, ESC is always sent
676       // this is handy for the ctrl+shift+esc shortcut on windows, among other things.
677       if (get_mods() & (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL))) {
678         shifted = 0;
679       }
680 #endif
681
682 #ifdef GRAVE_ESC_GUI_OVERRIDE
683       // if GUI is pressed, ESC is always sent
684       if (get_mods() & (MOD_BIT(KC_LGUI) | MOD_BIT(KC_RGUI))) {
685         shifted = 0;
686       }
687 #endif
688
689 #ifdef GRAVE_ESC_SHIFT_OVERRIDE
690       // if SHIFT is pressed, ESC is always sent
691       if (get_mods() & (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT))) {
692         shifted = 0;
693       }
694 #endif
695
696       if (record->event.pressed) {
697         grave_esc_was_shifted = shifted;
698         add_key(shifted ? KC_GRAVE : KC_ESCAPE);
699       }
700       else {
701         del_key(grave_esc_was_shifted ? KC_GRAVE : KC_ESCAPE);
702       }
703
704       send_keyboard_report();
705       return false;
706     }
707
708 #if defined(BACKLIGHT_ENABLE) && defined(BACKLIGHT_BREATHING)
709     case BL_BRTG: {
710       if (record->event.pressed) {
711         breathing_toggle();
712       }
713       return false;
714     }
715 #endif
716   }
717
718   return process_action_kb(record);
719 }
720
721 __attribute__ ((weak))
722 const bool ascii_to_shift_lut[0x80] PROGMEM = {
723     0, 0, 0, 0, 0, 0, 0, 0,
724     0, 0, 0, 0, 0, 0, 0, 0,
725     0, 0, 0, 0, 0, 0, 0, 0,
726     0, 0, 0, 0, 0, 0, 0, 0,
727     0, 1, 1, 1, 1, 1, 1, 0,
728     1, 1, 1, 1, 0, 0, 0, 0,
729     0, 0, 0, 0, 0, 0, 0, 0,
730     0, 0, 1, 0, 1, 0, 1, 1,
731     1, 1, 1, 1, 1, 1, 1, 1,
732     1, 1, 1, 1, 1, 1, 1, 1,
733     1, 1, 1, 1, 1, 1, 1, 1,
734     1, 1, 1, 0, 0, 0, 1, 1,
735     0, 0, 0, 0, 0, 0, 0, 0,
736     0, 0, 0, 0, 0, 0, 0, 0,
737     0, 0, 0, 0, 0, 0, 0, 0,
738     0, 0, 0, 1, 1, 1, 1, 0
739 };
740
741 __attribute__ ((weak))
742 const bool ascii_to_altgr_lut[0x80] PROGMEM = {
743     0, 0, 0, 0, 0, 0, 0, 0,
744     0, 0, 0, 0, 0, 0, 0, 0,
745     0, 0, 0, 0, 0, 0, 0, 0,
746     0, 0, 0, 0, 0, 0, 0, 0,
747     0, 0, 0, 0, 0, 0, 0, 0,
748     0, 0, 0, 0, 0, 0, 0, 0,
749     0, 0, 0, 0, 0, 0, 0, 0,
750     0, 0, 0, 0, 0, 0, 0, 0,
751     0, 0, 0, 0, 0, 0, 0, 0,
752     0, 0, 0, 0, 0, 0, 0, 0,
753     0, 0, 0, 0, 0, 0, 0, 0,
754     0, 0, 0, 0, 0, 0, 0, 0,
755     0, 0, 0, 0, 0, 0, 0, 0,
756     0, 0, 0, 0, 0, 0, 0, 0,
757     0, 0, 0, 0, 0, 0, 0, 0,
758     0, 0, 0, 0, 0, 0, 0, 0
759 };
760
761 __attribute__ ((weak))
762 const uint8_t ascii_to_keycode_lut[0x80] PROGMEM = {
763     0, 0, 0, 0, 0, 0, 0, 0,
764     KC_BSPC, KC_TAB, KC_ENT, 0, 0, 0, 0, 0,
765     0, 0, 0, 0, 0, 0, 0, 0,
766     0, 0, 0, KC_ESC, 0, 0, 0, 0,
767     KC_SPC, KC_1, KC_QUOT, KC_3, KC_4, KC_5, KC_7, KC_QUOT,
768     KC_9, KC_0, KC_8, KC_EQL, KC_COMM, KC_MINS, KC_DOT, KC_SLSH,
769     KC_0, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7,
770     KC_8, KC_9, KC_SCLN, KC_SCLN, KC_COMM, KC_EQL, KC_DOT, KC_SLSH,
771     KC_2, KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G,
772     KC_H, KC_I, KC_J, KC_K, KC_L, KC_M, KC_N, KC_O,
773     KC_P, KC_Q, KC_R, KC_S, KC_T, KC_U, KC_V, KC_W,
774     KC_X, KC_Y, KC_Z, KC_LBRC, KC_BSLS, KC_RBRC, KC_6, KC_MINS,
775     KC_GRV, KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G,
776     KC_H, KC_I, KC_J, KC_K, KC_L, KC_M, KC_N, KC_O,
777     KC_P, KC_Q, KC_R, KC_S, KC_T, KC_U, KC_V, KC_W,
778     KC_X, KC_Y, KC_Z, KC_LBRC, KC_BSLS, KC_RBRC, KC_GRV, KC_DEL
779 };
780
781 void send_string(const char *str) {
782   send_string_with_delay(str, 0);
783 }
784
785 void send_string_P(const char *str) {
786   send_string_with_delay_P(str, 0);
787 }
788
789 void send_string_with_delay(const char *str, uint8_t interval) {
790     while (1) {
791         char ascii_code = *str;
792         if (!ascii_code) break;
793         if (ascii_code == SS_TAP_CODE) {
794           // tap
795           uint8_t keycode = *(++str);
796           register_code(keycode);
797           unregister_code(keycode);
798         } else if (ascii_code == SS_DOWN_CODE) {
799           // down
800           uint8_t keycode = *(++str);
801           register_code(keycode);
802         } else if (ascii_code == SS_UP_CODE) {
803           // up
804           uint8_t keycode = *(++str);
805           unregister_code(keycode);
806         } else {
807           send_char(ascii_code);
808         }
809         ++str;
810         // interval
811         { uint8_t ms = interval; while (ms--) wait_ms(1); }
812     }
813 }
814
815 void send_string_with_delay_P(const char *str, uint8_t interval) {
816     while (1) {
817         char ascii_code = pgm_read_byte(str);
818         if (!ascii_code) break;
819         if (ascii_code == SS_TAP_CODE) {
820           // tap
821           uint8_t keycode = pgm_read_byte(++str);
822           register_code(keycode);
823           unregister_code(keycode);
824         } else if (ascii_code == SS_DOWN_CODE) {
825           // down
826           uint8_t keycode = pgm_read_byte(++str);
827           register_code(keycode);
828         } else if (ascii_code == SS_UP_CODE) {
829           // up
830           uint8_t keycode = pgm_read_byte(++str);
831           unregister_code(keycode);
832         } else {
833           send_char(ascii_code);
834         }
835         ++str;
836         // interval
837         { uint8_t ms = interval; while (ms--) wait_ms(1); }
838     }
839 }
840
841 void send_char(char ascii_code) {
842   uint8_t keycode = pgm_read_byte(&ascii_to_keycode_lut[(uint8_t)ascii_code]);
843   bool is_shifted = pgm_read_byte(&ascii_to_shift_lut[(uint8_t)ascii_code]);
844   bool is_altgred = pgm_read_byte(&ascii_to_altgr_lut[(uint8_t)ascii_code]);
845
846   if (is_shifted) {
847     register_code(KC_LSFT);
848   }
849   if (is_altgred) {
850     register_code(KC_RALT);
851   }
852   tap_code(keycode);
853   if (is_altgred) {
854     unregister_code(KC_RALT);
855   }
856   if (is_shifted) {
857     unregister_code(KC_LSFT);
858   }
859 }
860
861 void set_single_persistent_default_layer(uint8_t default_layer) {
862   #if defined(AUDIO_ENABLE) && defined(DEFAULT_LAYER_SONGS)
863     PLAY_SONG(default_layer_songs[default_layer]);
864   #endif
865   eeconfig_update_default_layer(1U<<default_layer);
866   default_layer_set(1U<<default_layer);
867 }
868
869 uint32_t update_tri_layer_state(uint32_t state, uint8_t layer1, uint8_t layer2, uint8_t layer3) {
870   uint32_t mask12 = (1UL << layer1) | (1UL << layer2);
871   uint32_t mask3 = 1UL << layer3;
872   return (state & mask12) == mask12 ? (state | mask3) : (state & ~mask3);
873 }
874
875 void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3) {
876   layer_state_set(update_tri_layer_state(layer_state, layer1, layer2, layer3));
877 }
878
879 void tap_random_base64(void) {
880   #if defined(__AVR_ATmega32U4__)
881     uint8_t key = (TCNT0 + TCNT1 + TCNT3 + TCNT4) % 64;
882   #else
883     uint8_t key = rand() % 64;
884   #endif
885   switch (key) {
886     case 0 ... 25:
887       register_code(KC_LSFT);
888       register_code(key + KC_A);
889       unregister_code(key + KC_A);
890       unregister_code(KC_LSFT);
891       break;
892     case 26 ... 51:
893       register_code(key - 26 + KC_A);
894       unregister_code(key - 26 + KC_A);
895       break;
896     case 52:
897       register_code(KC_0);
898       unregister_code(KC_0);
899       break;
900     case 53 ... 61:
901       register_code(key - 53 + KC_1);
902       unregister_code(key - 53 + KC_1);
903       break;
904     case 62:
905       register_code(KC_LSFT);
906       register_code(KC_EQL);
907       unregister_code(KC_EQL);
908       unregister_code(KC_LSFT);
909       break;
910     case 63:
911       register_code(KC_SLSH);
912       unregister_code(KC_SLSH);
913       break;
914   }
915 }
916
917 __attribute__((weak))
918 void bootmagic_lite(void) {
919   // The lite version of TMK's bootmagic based on Wilba.
920   // 100% less potential for accidentally making the
921   // keyboard do stupid things.
922
923   // We need multiple scans because debouncing can't be turned off.
924   matrix_scan();
925   #if defined(DEBOUNCING_DELAY) && DEBOUNCING_DELAY > 0
926     wait_ms(DEBOUNCING_DELAY * 2);
927   #elif defined(DEBOUNCE) && DEBOUNCE > 0
928     wait_ms(DEBOUNCE * 2);
929   #else
930     wait_ms(30);
931   #endif
932   matrix_scan();
933
934   // If the Esc and space bar are held down on power up,
935   // reset the EEPROM valid state and jump to bootloader.
936   // Assumes Esc is at [0,0].
937   // This isn't very generalized, but we need something that doesn't
938   // rely on user's keymaps in firmware or EEPROM.
939   if (matrix_get_row(BOOTMAGIC_LITE_ROW) & (1 << BOOTMAGIC_LITE_COLUMN)) {
940     eeconfig_disable();
941     // Jump to bootloader.
942     bootloader_jump();
943   }
944 }
945
946 void matrix_init_quantum() {
947   #ifdef BOOTMAGIC_LITE
948     bootmagic_lite();
949   #endif
950   if (!eeconfig_is_enabled()) {
951     eeconfig_init();
952   }
953   #ifdef BACKLIGHT_ENABLE
954     #ifdef LED_MATRIX_ENABLE
955         led_matrix_init();
956     #else
957         backlight_init_ports();
958     #endif
959   #endif
960   #ifdef AUDIO_ENABLE
961     audio_init();
962   #endif
963   #ifdef RGB_MATRIX_ENABLE
964     rgb_matrix_init();
965   #endif
966   #ifdef ENCODER_ENABLE
967     encoder_init();
968   #endif
969   #if defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE)
970     unicode_input_mode_init();
971   #endif
972   #ifdef HAPTIC_ENABLE
973     haptic_init();
974   #endif
975   #ifdef OUTPUT_AUTO_ENABLE
976     set_output(OUTPUT_AUTO);
977   #endif
978   matrix_init_kb();
979 }
980
981 void matrix_scan_quantum() {
982   #if defined(AUDIO_ENABLE) && !defined(NO_MUSIC_MODE)
983     matrix_scan_music();
984   #endif
985
986   #ifdef TAP_DANCE_ENABLE
987     matrix_scan_tap_dance();
988   #endif
989
990   #ifdef COMBO_ENABLE
991     matrix_scan_combo();
992   #endif
993
994   #if defined(BACKLIGHT_ENABLE)
995     #if defined(LED_MATRIX_ENABLE)
996         led_matrix_task();
997     #elif defined(BACKLIGHT_PIN)
998         backlight_task();
999     #endif
1000   #endif
1001
1002   #ifdef RGB_MATRIX_ENABLE
1003     rgb_matrix_task();
1004   #endif
1005
1006   #ifdef ENCODER_ENABLE
1007     encoder_read();
1008   #endif
1009
1010   #ifdef HAPTIC_ENABLE
1011     haptic_task();
1012   #endif
1013
1014   matrix_scan_kb();
1015 }
1016 #if defined(BACKLIGHT_ENABLE) && (defined(BACKLIGHT_PIN) || defined(BACKLIGHT_PINS))
1017
1018 // The logic is a bit complex, we support 3 setups:
1019 // 1. hardware PWM when backlight is wired to a PWM pin
1020 // depending on this pin, we use a different output compare unit
1021 // 2. software PWM with hardware timers, but the used timer depends
1022 // on the audio setup (audio wins other backlight)
1023 // 3. full software PWM
1024
1025 #if BACKLIGHT_PIN == B7
1026 #  define HARDWARE_PWM
1027 #  define TCCRxA TCCR1A
1028 #  define TCCRxB TCCR1B
1029 #  define COMxx1 COM1C1
1030 #  define OCRxx  OCR1C
1031 #  define TIMERx_OVF_vect TIMER1_OVF_vect
1032 #  define TOIEx  TOIE1
1033 #  define ICRx   ICR1
1034 #  define TIMSKx TIMSK1
1035 #elif BACKLIGHT_PIN == B6
1036 #  define HARDWARE_PWM
1037 #  define TCCRxA TCCR1A
1038 #  define TCCRxB TCCR1B
1039 #  define COMxx1 COM1B1
1040 #  define OCRxx  OCR1B
1041 #  define TIMERx_OVF_vect TIMER1_OVF_vect
1042 #  define TOIEx  TOIE1
1043 #  define ICRx   ICR1
1044 #  define TIMSKx TIMSK1
1045 #elif BACKLIGHT_PIN == B5
1046 #  define HARDWARE_PWM
1047 #  define TCCRxA TCCR1A
1048 #  define TCCRxB TCCR1B
1049 #  define COMxx1 COM1A1
1050 #  define OCRxx  OCR1A
1051 #  define TIMERx_OVF_vect TIMER1_OVF_vect
1052 #  define TOIEx  TOIE1
1053 #  define ICRx   ICR1
1054 #  define TIMSKx TIMSK1
1055 #elif BACKLIGHT_PIN == C6
1056 #  define HARDWARE_PWM
1057 #  define TCCRxA TCCR3A
1058 #  define TCCRxB TCCR3B
1059 #  define COMxx1 COM3A1
1060 #  define OCRxx  OCR3A
1061 #  define TIMERx_OVF_vect TIMER3_OVF_vect
1062 #  define TOIEx  TOIE3
1063 #  define ICRx   ICR3
1064 #  define TIMSKx TIMSK3
1065 #elif defined(__AVR_ATmega32A__) && BACKLIGHT_PIN == D4
1066 #  define TCCRxA TCCR1A
1067 #  define TCCRxB TCCR1B
1068 #  define COMxx1 COM1B1
1069 #  define OCRxx  OCR1B
1070 #  define TIMERx_OVF_vect TIMER1_OVF_vect
1071 #  define TOIEx  TOIE1
1072 #  define ICRx   ICR1
1073 #  define TIMSKx TIMSK1
1074 #else
1075 #  if !defined(BACKLIGHT_CUSTOM_DRIVER)
1076 #    if !defined(B5_AUDIO) && !defined(B6_AUDIO) && !defined(B7_AUDIO)
1077      // timer 1 is not used by audio , backlight can use it
1078 #pragma message "Using hardware timer 1 with software PWM"
1079 #      define HARDWARE_PWM
1080 #      define BACKLIGHT_PWM_TIMER
1081 #      define TCCRxA TCCR1A
1082 #      define TCCRxB TCCR1B
1083 #      define OCRxx  OCR1A
1084 #      define TIMERx_COMPA_vect TIMER1_COMPA_vect
1085 #      define TIMERx_OVF_vect TIMER1_OVF_vect
1086 #      define OCIExA OCIE1A
1087 #      define TOIEx  TOIE1
1088 #      define ICRx   ICR1
1089 #      if defined(__AVR_ATmega32A__) // This MCU has only one TIMSK register
1090 #        define TIMSKx TIMSK
1091 #      else
1092 #        define TIMSKx TIMSK1
1093 #      endif
1094 #    elif !defined(C6_AUDIO) && !defined(C5_AUDIO) && !defined(C4_AUDIO)
1095 #pragma message "Using hardware timer 3 with software PWM"
1096 // timer 3 is not used by audio, backlight can use it
1097 #      define HARDWARE_PWM
1098 #      define BACKLIGHT_PWM_TIMER
1099 #      define TCCRxA TCCR3A
1100 #      define TCCRxB TCCR3B
1101 #      define OCRxx OCR3A
1102 #      define TIMERx_COMPA_vect TIMER3_COMPA_vect
1103 #      define TIMERx_OVF_vect TIMER3_OVF_vect
1104 #      define OCIExA OCIE3A
1105 #      define TOIEx  TOIE3
1106 #      define ICRx   ICR1
1107 #      define TIMSKx TIMSK3
1108 #    else
1109 #pragma message "Audio in use - using pure software PWM"
1110 #define NO_HARDWARE_PWM
1111 #    endif
1112 #  else
1113 #pragma message "Custom driver defined - using pure software PWM"
1114 #define NO_HARDWARE_PWM
1115 #  endif
1116 #endif
1117
1118 #ifndef BACKLIGHT_ON_STATE
1119 #define BACKLIGHT_ON_STATE 0
1120 #endif
1121
1122 void backlight_on(uint8_t backlight_pin) {
1123 #if BACKLIGHT_ON_STATE == 0
1124   writePinLow(backlight_pin);
1125 #else
1126   writePinHigh(backlight_pin);
1127 #endif
1128 }
1129
1130 void backlight_off(uint8_t backlight_pin) {
1131 #if BACKLIGHT_ON_STATE == 0
1132   writePinHigh(backlight_pin);
1133 #else
1134   writePinLow(backlight_pin);
1135 #endif
1136 }
1137
1138
1139 #if defined(NO_HARDWARE_PWM) || defined(BACKLIGHT_PWM_TIMER)  // pwm through software
1140
1141 // we support multiple backlight pins
1142 #ifndef BACKLIGHT_LED_COUNT
1143 #define BACKLIGHT_LED_COUNT 1
1144 #endif
1145
1146 #if BACKLIGHT_LED_COUNT == 1
1147 #define BACKLIGHT_PIN_INIT { BACKLIGHT_PIN }
1148 #else
1149 #define BACKLIGHT_PIN_INIT BACKLIGHT_PINS
1150 #endif
1151
1152 #define FOR_EACH_LED(x) \
1153   for (uint8_t i = 0; i < BACKLIGHT_LED_COUNT; i++) \
1154   { \
1155     uint8_t backlight_pin = backlight_pins[i]; \
1156     { \
1157       x \
1158     } \
1159   }
1160
1161 static const uint8_t backlight_pins[BACKLIGHT_LED_COUNT] = BACKLIGHT_PIN_INIT;
1162
1163 #else // full hardware PWM
1164
1165 // we support only one backlight pin
1166 static const uint8_t backlight_pin = BACKLIGHT_PIN;
1167 #define FOR_EACH_LED(x) x
1168
1169 #endif
1170
1171 #ifdef NO_HARDWARE_PWM
1172 __attribute__((weak))
1173 void backlight_init_ports(void)
1174 {
1175   // Setup backlight pin as output and output to on state.
1176   FOR_EACH_LED(
1177     setPinOutput(backlight_pin);
1178     backlight_on(backlight_pin);
1179   )
1180 }
1181
1182 __attribute__ ((weak))
1183 void backlight_set(uint8_t level) {}
1184
1185 uint8_t backlight_tick = 0;
1186
1187 #ifndef BACKLIGHT_CUSTOM_DRIVER
1188 void backlight_task(void) {
1189   if ((0xFFFF >> ((BACKLIGHT_LEVELS - get_backlight_level()) * ((BACKLIGHT_LEVELS + 1) / 2))) & (1 << backlight_tick)) {
1190     FOR_EACH_LED(
1191       backlight_on(backlight_pin);
1192     )
1193   }
1194   else {
1195     FOR_EACH_LED(
1196       backlight_off(backlight_pin);
1197     )
1198   }
1199   backlight_tick = (backlight_tick + 1) % 16;
1200 }
1201 #endif
1202
1203 #ifdef BACKLIGHT_BREATHING
1204   #ifndef BACKLIGHT_CUSTOM_DRIVER
1205   #error "Backlight breathing only available with hardware PWM. Please disable."
1206   #endif
1207 #endif
1208
1209 #else // hardware pwm through timer
1210
1211 #ifdef BACKLIGHT_PWM_TIMER
1212
1213 // The idea of software PWM assisted by hardware timers is the following
1214 // we use the hardware timer in fast PWM mode like for hardware PWM, but
1215 // instead of letting the Output Match Comparator control the led pin
1216 // (which is not possible since the backlight is not wired to PWM pins on the
1217 // CPU), we do the LED on/off by oursleves.
1218 // The timer is setup to count up to 0xFFFF, and we set the Output Compare
1219 // register to the current 16bits backlight level (after CIE correction).
1220 // This means the CPU will trigger a compare match interrupt when the counter
1221 // reaches the backlight level, where we turn off the LEDs,
1222 // but also an overflow interrupt when the counter rolls back to 0,
1223 // in which we're going to turn on the LEDs.
1224 // The LED will then be on for OCRxx/0xFFFF time, adjusted every 244Hz.
1225
1226 // Triggered when the counter reaches the OCRx value
1227 ISR(TIMERx_COMPA_vect) {
1228   FOR_EACH_LED(
1229     backlight_off(backlight_pin);
1230   )
1231 }
1232
1233 // Triggered when the counter reaches the TOP value
1234 // this one triggers at F_CPU/65536 =~ 244 Hz
1235 ISR(TIMERx_OVF_vect) {
1236 #ifdef BACKLIGHT_BREATHING
1237   if(is_breathing()) {
1238     breathing_task();
1239   }
1240 #endif
1241   // for very small values of OCRxx (or backlight level)
1242   // we can't guarantee this whole code won't execute
1243   // at the same time as the compare match interrupt
1244   // which means that we might turn on the leds while
1245   // trying to turn them off, leading to flickering
1246   // artifacts (especially while breathing, because breathing_task
1247   // takes many computation cycles).
1248   // so better not turn them on while the counter TOP is very low.
1249   if (OCRxx > 256) {
1250     FOR_EACH_LED(
1251       backlight_on(backlight_pin);
1252     )
1253   }
1254 }
1255
1256 #endif
1257
1258 #define TIMER_TOP 0xFFFFU
1259
1260 // See http://jared.geek.nz/2013/feb/linear-led-pwm
1261 static uint16_t cie_lightness(uint16_t v) {
1262   if (v <= 5243) // if below 8% of max
1263     return v / 9; // same as dividing by 900%
1264   else {
1265     uint32_t y = (((uint32_t) v + 10486) << 8) / (10486 + 0xFFFFUL); // add 16% of max and compare
1266     // to get a useful result with integer division, we shift left in the expression above
1267     // and revert what we've done again after squaring.
1268     y = y * y * y >> 8;
1269     if (y > 0xFFFFUL) // prevent overflow
1270       return 0xFFFFU;
1271     else
1272       return (uint16_t) y;
1273   }
1274 }
1275
1276 // range for val is [0..TIMER_TOP]. PWM pin is high while the timer count is below val.
1277 static inline void set_pwm(uint16_t val) {
1278         OCRxx = val;
1279 }
1280
1281 #ifndef BACKLIGHT_CUSTOM_DRIVER
1282 __attribute__ ((weak))
1283 void backlight_set(uint8_t level) {
1284   if (level > BACKLIGHT_LEVELS)
1285     level = BACKLIGHT_LEVELS;
1286
1287   if (level == 0) {
1288     #ifdef BACKLIGHT_PWM_TIMER
1289       if (OCRxx) {
1290         TIMSKx &= ~(_BV(OCIExA));
1291         TIMSKx &= ~(_BV(TOIEx));
1292         FOR_EACH_LED(
1293           backlight_off(backlight_pin);
1294         )
1295       }
1296     #else
1297     // Turn off PWM control on backlight pin
1298     TCCRxA &= ~(_BV(COMxx1));
1299     #endif
1300   } else {
1301     #ifdef BACKLIGHT_PWM_TIMER
1302       if (!OCRxx) {
1303         TIMSKx |= _BV(OCIExA);
1304         TIMSKx |= _BV(TOIEx);
1305       }
1306     #else
1307     // Turn on PWM control of backlight pin
1308     TCCRxA |= _BV(COMxx1);
1309     #endif
1310   }
1311   // Set the brightness
1312   set_pwm(cie_lightness(TIMER_TOP * (uint32_t)level / BACKLIGHT_LEVELS));
1313 }
1314
1315 void backlight_task(void) {}
1316 #endif  // BACKLIGHT_CUSTOM_DRIVER
1317
1318 #ifdef BACKLIGHT_BREATHING
1319
1320 #define BREATHING_NO_HALT  0
1321 #define BREATHING_HALT_OFF 1
1322 #define BREATHING_HALT_ON  2
1323 #define BREATHING_STEPS 128
1324
1325 static uint8_t breathing_period = BREATHING_PERIOD;
1326 static uint8_t breathing_halt = BREATHING_NO_HALT;
1327 static uint16_t breathing_counter = 0;
1328
1329 #ifdef BACKLIGHT_PWM_TIMER
1330 static bool breathing = false;
1331
1332 bool is_breathing(void) {
1333   return breathing;
1334 }
1335
1336 #define breathing_interrupt_enable() do { breathing = true; } while (0)
1337 #define breathing_interrupt_disable() do { breathing = false; } while (0)
1338 #else
1339
1340 bool is_breathing(void) {
1341     return !!(TIMSKx & _BV(TOIEx));
1342 }
1343
1344 #define breathing_interrupt_enable() do {TIMSKx |= _BV(TOIEx);} while (0)
1345 #define breathing_interrupt_disable() do {TIMSKx &= ~_BV(TOIEx);} while (0)
1346 #endif
1347
1348 #define breathing_min() do {breathing_counter = 0;} while (0)
1349 #define breathing_max() do {breathing_counter = breathing_period * 244 / 2;} while (0)
1350
1351 void breathing_enable(void)
1352 {
1353   breathing_counter = 0;
1354   breathing_halt = BREATHING_NO_HALT;
1355   breathing_interrupt_enable();
1356 }
1357
1358 void breathing_pulse(void)
1359 {
1360     if (get_backlight_level() == 0)
1361       breathing_min();
1362     else
1363       breathing_max();
1364     breathing_halt = BREATHING_HALT_ON;
1365     breathing_interrupt_enable();
1366 }
1367
1368 void breathing_disable(void)
1369 {
1370     breathing_interrupt_disable();
1371     // Restore backlight level
1372     backlight_set(get_backlight_level());
1373 }
1374
1375 void breathing_self_disable(void)
1376 {
1377   if (get_backlight_level() == 0)
1378     breathing_halt = BREATHING_HALT_OFF;
1379   else
1380     breathing_halt = BREATHING_HALT_ON;
1381 }
1382
1383 void breathing_toggle(void) {
1384   if (is_breathing())
1385     breathing_disable();
1386   else
1387     breathing_enable();
1388 }
1389
1390 void breathing_period_set(uint8_t value)
1391 {
1392   if (!value)
1393     value = 1;
1394   breathing_period = value;
1395 }
1396
1397 void breathing_period_default(void) {
1398   breathing_period_set(BREATHING_PERIOD);
1399 }
1400
1401 void breathing_period_inc(void)
1402 {
1403   breathing_period_set(breathing_period+1);
1404 }
1405
1406 void breathing_period_dec(void)
1407 {
1408   breathing_period_set(breathing_period-1);
1409 }
1410
1411 /* To generate breathing curve in python:
1412  * from math import sin, pi; [int(sin(x/128.0*pi)**4*255) for x in range(128)]
1413  */
1414 static const uint8_t breathing_table[BREATHING_STEPS] PROGMEM = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 17, 20, 24, 28, 32, 36, 41, 46, 51, 57, 63, 70, 76, 83, 91, 98, 106, 113, 121, 129, 138, 146, 154, 162, 170, 178, 185, 193, 200, 207, 213, 220, 225, 231, 235, 240, 244, 247, 250, 252, 253, 254, 255, 254, 253, 252, 250, 247, 244, 240, 235, 231, 225, 220, 213, 207, 200, 193, 185, 178, 170, 162, 154, 146, 138, 129, 121, 113, 106, 98, 91, 83, 76, 70, 63, 57, 51, 46, 41, 36, 32, 28, 24, 20, 17, 15, 12, 10, 8, 6, 5, 4, 3, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
1415
1416 // Use this before the cie_lightness function.
1417 static inline uint16_t scale_backlight(uint16_t v) {
1418   return v / BACKLIGHT_LEVELS * get_backlight_level();
1419 }
1420
1421 #ifdef BACKLIGHT_PWM_TIMER
1422 void breathing_task(void)
1423 #else
1424 /* Assuming a 16MHz CPU clock and a timer that resets at 64k (ICR1), the following interrupt handler will run
1425  * about 244 times per second.
1426  */
1427 ISR(TIMERx_OVF_vect)
1428 #endif
1429 {
1430   uint16_t interval = (uint16_t) breathing_period * 244 / BREATHING_STEPS;
1431   // resetting after one period to prevent ugly reset at overflow.
1432   breathing_counter = (breathing_counter + 1) % (breathing_period * 244);
1433   uint8_t index = breathing_counter / interval % BREATHING_STEPS;
1434
1435   if (((breathing_halt == BREATHING_HALT_ON) && (index == BREATHING_STEPS / 2)) ||
1436       ((breathing_halt == BREATHING_HALT_OFF) && (index == BREATHING_STEPS - 1)))
1437   {
1438       breathing_interrupt_disable();
1439   }
1440
1441   set_pwm(cie_lightness(scale_backlight((uint16_t) pgm_read_byte(&breathing_table[index]) * 0x0101U)));
1442 }
1443
1444 #endif // BACKLIGHT_BREATHING
1445
1446 __attribute__ ((weak))
1447 void backlight_init_ports(void)
1448 {
1449   // Setup backlight pin as output and output to on state.
1450   FOR_EACH_LED(
1451     setPinOutput(backlight_pin);
1452     backlight_on(backlight_pin);
1453   )
1454
1455   // I could write a wall of text here to explain... but TL;DW
1456   // Go read the ATmega32u4 datasheet.
1457   // And this: http://blog.saikoled.com/post/43165849837/secret-konami-cheat-code-to-high-resolution-pwm-on
1458
1459 #ifdef BACKLIGHT_PWM_TIMER
1460   // TimerX setup, Fast PWM mode count to TOP set in ICRx
1461   TCCRxA = _BV(WGM11); // = 0b00000010;
1462   // clock select clk/1
1463   TCCRxB = _BV(WGM13) | _BV(WGM12) | _BV(CS10); // = 0b00011001;
1464 #else // hardware PWM
1465   // Pin PB7 = OCR1C (Timer 1, Channel C)
1466   // Compare Output Mode = Clear on compare match, Channel C = COM1C1=1 COM1C0=0
1467   // (i.e. start high, go low when counter matches.)
1468   // WGM Mode 14 (Fast PWM) = WGM13=1 WGM12=1 WGM11=1 WGM10=0
1469   // Clock Select = clk/1 (no prescaling) = CS12=0 CS11=0 CS10=1
1470
1471   /*
1472   14.8.3:
1473   "In fast PWM mode, the compare units allow generation of PWM waveforms on the OCnx pins. Setting the COMnx1:0 bits to two will produce a non-inverted PWM [..]."
1474   "In fast PWM mode the counter is incremented until the counter value matches either one of the fixed values 0x00FF, 0x01FF, or 0x03FF (WGMn3:0 = 5, 6, or 7), the value in ICRn (WGMn3:0 = 14), or the value in OCRnA (WGMn3:0 = 15)."
1475   */
1476   TCCRxA = _BV(COMxx1) | _BV(WGM11);            // = 0b00001010;
1477   TCCRxB = _BV(WGM13) | _BV(WGM12) | _BV(CS10); // = 0b00011001;
1478 #endif
1479   // Use full 16-bit resolution. Counter counts to ICR1 before reset to 0.
1480   ICRx = TIMER_TOP;
1481
1482   backlight_init();
1483   #ifdef BACKLIGHT_BREATHING
1484     breathing_enable();
1485   #endif
1486 }
1487
1488 #endif // hardware backlight
1489
1490 #else // no backlight
1491
1492 __attribute__ ((weak))
1493 void backlight_init_ports(void) {}
1494
1495 __attribute__ ((weak))
1496 void backlight_set(uint8_t level) {}
1497
1498 #endif // backlight
1499
1500 #ifdef HD44780_ENABLED
1501 #include "hd44780.h"
1502 #endif
1503
1504
1505 // Functions for spitting out values
1506 //
1507
1508 void send_dword(uint32_t number) { // this might not actually work
1509     uint16_t word = (number >> 16);
1510     send_word(word);
1511     send_word(number & 0xFFFFUL);
1512 }
1513
1514 void send_word(uint16_t number) {
1515     uint8_t byte = number >> 8;
1516     send_byte(byte);
1517     send_byte(number & 0xFF);
1518 }
1519
1520 void send_byte(uint8_t number) {
1521     uint8_t nibble = number >> 4;
1522     send_nibble(nibble);
1523     send_nibble(number & 0xF);
1524 }
1525
1526 void send_nibble(uint8_t number) {
1527     switch (number) {
1528         case 0:
1529             register_code(KC_0);
1530             unregister_code(KC_0);
1531             break;
1532         case 1 ... 9:
1533             register_code(KC_1 + (number - 1));
1534             unregister_code(KC_1 + (number - 1));
1535             break;
1536         case 0xA ... 0xF:
1537             register_code(KC_A + (number - 0xA));
1538             unregister_code(KC_A + (number - 0xA));
1539             break;
1540     }
1541 }
1542
1543
1544 __attribute__((weak))
1545 uint16_t hex_to_keycode(uint8_t hex)
1546 {
1547   hex = hex & 0xF;
1548   if (hex == 0x0) {
1549     return KC_0;
1550   } else if (hex < 0xA) {
1551     return KC_1 + (hex - 0x1);
1552   } else {
1553     return KC_A + (hex - 0xA);
1554   }
1555 }
1556
1557 void api_send_unicode(uint32_t unicode) {
1558 #ifdef API_ENABLE
1559     uint8_t chunk[4];
1560     dword_to_bytes(unicode, chunk);
1561     MT_SEND_DATA(DT_UNICODE, chunk, 5);
1562 #endif
1563 }
1564
1565 __attribute__ ((weak))
1566 void led_set_user(uint8_t usb_led) {
1567
1568 }
1569
1570 __attribute__ ((weak))
1571 void led_set_kb(uint8_t usb_led) {
1572     led_set_user(usb_led);
1573 }
1574
1575 __attribute__ ((weak))
1576 void led_init_ports(void)
1577 {
1578
1579 }
1580
1581 __attribute__ ((weak))
1582 void led_set(uint8_t usb_led)
1583 {
1584 #if defined(BACKLIGHT_CAPS_LOCK) && defined(BACKLIGHT_ENABLE)
1585   // Use backlight as Caps Lock indicator
1586   uint8_t bl_toggle_lvl = 0;
1587
1588   if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK) && !backlight_config.enable) {
1589     // Turning Caps Lock ON and backlight is disabled in config
1590     // Toggling backlight to the brightest level
1591     bl_toggle_lvl = BACKLIGHT_LEVELS;
1592   } else if (IS_LED_OFF(usb_led, USB_LED_CAPS_LOCK) && backlight_config.enable) {
1593     // Turning Caps Lock OFF and backlight is enabled in config
1594     // Toggling backlight and restoring config level
1595     bl_toggle_lvl = backlight_config.level;
1596   }
1597
1598   // Set level without modify backlight_config to keep ability to restore state
1599   backlight_set(bl_toggle_lvl);
1600 #endif
1601
1602   led_set_kb(usb_led);
1603 }
1604
1605
1606 //------------------------------------------------------------------------------
1607 // Override these functions in your keymap file to play different tunes on
1608 // different events such as startup and bootloader jump
1609
1610 __attribute__ ((weak))
1611 void startup_user() {}
1612
1613 __attribute__ ((weak))
1614 void shutdown_user() {}
1615
1616 //------------------------------------------------------------------------------