]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/quantum.c
[Keymap] Drashna Corne Keyboard updates (#5903)
[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       return false;
713     }
714 #endif
715   }
716
717   return process_action_kb(record);
718 }
719
720 __attribute__ ((weak))
721 const bool ascii_to_shift_lut[0x80] PROGMEM = {
722     0, 0, 0, 0, 0, 0, 0, 0,
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, 1, 1, 1, 1, 1, 1, 0,
727     1, 1, 1, 1, 0, 0, 0, 0,
728     0, 0, 0, 0, 0, 0, 0, 0,
729     0, 0, 1, 0, 1, 0, 1, 1,
730     1, 1, 1, 1, 1, 1, 1, 1,
731     1, 1, 1, 1, 1, 1, 1, 1,
732     1, 1, 1, 1, 1, 1, 1, 1,
733     1, 1, 1, 0, 0, 0, 1, 1,
734     0, 0, 0, 0, 0, 0, 0, 0,
735     0, 0, 0, 0, 0, 0, 0, 0,
736     0, 0, 0, 0, 0, 0, 0, 0,
737     0, 0, 0, 1, 1, 1, 1, 0
738 };
739
740 __attribute__ ((weak))
741 const bool ascii_to_altgr_lut[0x80] PROGMEM = {
742     0, 0, 0, 0, 0, 0, 0, 0,
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 };
759
760 __attribute__ ((weak))
761 const uint8_t ascii_to_keycode_lut[0x80] PROGMEM = {
762     0, 0, 0, 0, 0, 0, 0, 0,
763     KC_BSPC, KC_TAB, KC_ENT, 0, 0, 0, 0, 0,
764     0, 0, 0, 0, 0, 0, 0, 0,
765     0, 0, 0, KC_ESC, 0, 0, 0, 0,
766     KC_SPC, KC_1, KC_QUOT, KC_3, KC_4, KC_5, KC_7, KC_QUOT,
767     KC_9, KC_0, KC_8, KC_EQL, KC_COMM, KC_MINS, KC_DOT, KC_SLSH,
768     KC_0, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7,
769     KC_8, KC_9, KC_SCLN, KC_SCLN, KC_COMM, KC_EQL, KC_DOT, KC_SLSH,
770     KC_2, KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G,
771     KC_H, KC_I, KC_J, KC_K, KC_L, KC_M, KC_N, KC_O,
772     KC_P, KC_Q, KC_R, KC_S, KC_T, KC_U, KC_V, KC_W,
773     KC_X, KC_Y, KC_Z, KC_LBRC, KC_BSLS, KC_RBRC, KC_6, KC_MINS,
774     KC_GRV, KC_A, KC_B, KC_C, KC_D, KC_E, KC_F, KC_G,
775     KC_H, KC_I, KC_J, KC_K, KC_L, KC_M, KC_N, KC_O,
776     KC_P, KC_Q, KC_R, KC_S, KC_T, KC_U, KC_V, KC_W,
777     KC_X, KC_Y, KC_Z, KC_LBRC, KC_BSLS, KC_RBRC, KC_GRV, KC_DEL
778 };
779
780 void send_string(const char *str) {
781   send_string_with_delay(str, 0);
782 }
783
784 void send_string_P(const char *str) {
785   send_string_with_delay_P(str, 0);
786 }
787
788 void send_string_with_delay(const char *str, uint8_t interval) {
789     while (1) {
790         char ascii_code = *str;
791         if (!ascii_code) break;
792         if (ascii_code == SS_TAP_CODE) {
793           // tap
794           uint8_t keycode = *(++str);
795           register_code(keycode);
796           unregister_code(keycode);
797         } else if (ascii_code == SS_DOWN_CODE) {
798           // down
799           uint8_t keycode = *(++str);
800           register_code(keycode);
801         } else if (ascii_code == SS_UP_CODE) {
802           // up
803           uint8_t keycode = *(++str);
804           unregister_code(keycode);
805         } else {
806           send_char(ascii_code);
807         }
808         ++str;
809         // interval
810         { uint8_t ms = interval; while (ms--) wait_ms(1); }
811     }
812 }
813
814 void send_string_with_delay_P(const char *str, uint8_t interval) {
815     while (1) {
816         char ascii_code = pgm_read_byte(str);
817         if (!ascii_code) break;
818         if (ascii_code == SS_TAP_CODE) {
819           // tap
820           uint8_t keycode = pgm_read_byte(++str);
821           register_code(keycode);
822           unregister_code(keycode);
823         } else if (ascii_code == SS_DOWN_CODE) {
824           // down
825           uint8_t keycode = pgm_read_byte(++str);
826           register_code(keycode);
827         } else if (ascii_code == SS_UP_CODE) {
828           // up
829           uint8_t keycode = pgm_read_byte(++str);
830           unregister_code(keycode);
831         } else {
832           send_char(ascii_code);
833         }
834         ++str;
835         // interval
836         { uint8_t ms = interval; while (ms--) wait_ms(1); }
837     }
838 }
839
840 void send_char(char ascii_code) {
841   uint8_t keycode = pgm_read_byte(&ascii_to_keycode_lut[(uint8_t)ascii_code]);
842   bool is_shifted = pgm_read_byte(&ascii_to_shift_lut[(uint8_t)ascii_code]);
843   bool is_altgred = pgm_read_byte(&ascii_to_altgr_lut[(uint8_t)ascii_code]);
844
845   if (is_shifted) {
846     register_code(KC_LSFT);
847   }
848   if (is_altgred) {
849     register_code(KC_RALT);
850   }
851   tap_code(keycode);
852   if (is_altgred) {
853     unregister_code(KC_RALT);
854   }
855   if (is_shifted) {
856     unregister_code(KC_LSFT);
857   }
858 }
859
860 void set_single_persistent_default_layer(uint8_t default_layer) {
861   #if defined(AUDIO_ENABLE) && defined(DEFAULT_LAYER_SONGS)
862     PLAY_SONG(default_layer_songs[default_layer]);
863   #endif
864   eeconfig_update_default_layer(1U<<default_layer);
865   default_layer_set(1U<<default_layer);
866 }
867
868 uint32_t update_tri_layer_state(uint32_t state, uint8_t layer1, uint8_t layer2, uint8_t layer3) {
869   uint32_t mask12 = (1UL << layer1) | (1UL << layer2);
870   uint32_t mask3 = 1UL << layer3;
871   return (state & mask12) == mask12 ? (state | mask3) : (state & ~mask3);
872 }
873
874 void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3) {
875   layer_state_set(update_tri_layer_state(layer_state, layer1, layer2, layer3));
876 }
877
878 void tap_random_base64(void) {
879   #if defined(__AVR_ATmega32U4__)
880     uint8_t key = (TCNT0 + TCNT1 + TCNT3 + TCNT4) % 64;
881   #else
882     uint8_t key = rand() % 64;
883   #endif
884   switch (key) {
885     case 0 ... 25:
886       register_code(KC_LSFT);
887       register_code(key + KC_A);
888       unregister_code(key + KC_A);
889       unregister_code(KC_LSFT);
890       break;
891     case 26 ... 51:
892       register_code(key - 26 + KC_A);
893       unregister_code(key - 26 + KC_A);
894       break;
895     case 52:
896       register_code(KC_0);
897       unregister_code(KC_0);
898       break;
899     case 53 ... 61:
900       register_code(key - 53 + KC_1);
901       unregister_code(key - 53 + KC_1);
902       break;
903     case 62:
904       register_code(KC_LSFT);
905       register_code(KC_EQL);
906       unregister_code(KC_EQL);
907       unregister_code(KC_LSFT);
908       break;
909     case 63:
910       register_code(KC_SLSH);
911       unregister_code(KC_SLSH);
912       break;
913   }
914 }
915
916 __attribute__((weak))
917 void bootmagic_lite(void) {
918   // The lite version of TMK's bootmagic based on Wilba.
919   // 100% less potential for accidentally making the
920   // keyboard do stupid things.
921
922   // We need multiple scans because debouncing can't be turned off.
923   matrix_scan();
924   #if defined(DEBOUNCING_DELAY) && DEBOUNCING_DELAY > 0
925     wait_ms(DEBOUNCING_DELAY * 2);
926   #elif defined(DEBOUNCE) && DEBOUNCE > 0
927     wait_ms(DEBOUNCE * 2);
928   #else
929     wait_ms(30);
930   #endif
931   matrix_scan();
932
933   // If the Esc and space bar are held down on power up,
934   // reset the EEPROM valid state and jump to bootloader.
935   // Assumes Esc is at [0,0].
936   // This isn't very generalized, but we need something that doesn't
937   // rely on user's keymaps in firmware or EEPROM.
938   if (matrix_get_row(BOOTMAGIC_LITE_ROW) & (1 << BOOTMAGIC_LITE_COLUMN)) {
939     eeconfig_disable();
940     // Jump to bootloader.
941     bootloader_jump();
942   }
943 }
944
945 void matrix_init_quantum() {
946   #ifdef BOOTMAGIC_LITE
947     bootmagic_lite();
948   #endif
949   if (!eeconfig_is_enabled()) {
950     eeconfig_init();
951   }
952   #ifdef BACKLIGHT_ENABLE
953     #ifdef LED_MATRIX_ENABLE
954         led_matrix_init();
955     #else
956         backlight_init_ports();
957     #endif
958   #endif
959   #ifdef AUDIO_ENABLE
960     audio_init();
961   #endif
962   #ifdef RGB_MATRIX_ENABLE
963     rgb_matrix_init();
964   #endif
965   #ifdef ENCODER_ENABLE
966     encoder_init();
967   #endif
968   #if defined(UNICODE_ENABLE) || defined(UNICODEMAP_ENABLE) || defined(UCIS_ENABLE)
969     unicode_input_mode_init();
970   #endif
971   #ifdef HAPTIC_ENABLE
972     haptic_init();
973   #endif
974   #ifdef OUTPUT_AUTO_ENABLE
975     set_output(OUTPUT_AUTO);
976   #endif
977   matrix_init_kb();
978 }
979
980 void matrix_scan_quantum() {
981   #if defined(AUDIO_ENABLE) && !defined(NO_MUSIC_MODE)
982     matrix_scan_music();
983   #endif
984
985   #ifdef TAP_DANCE_ENABLE
986     matrix_scan_tap_dance();
987   #endif
988
989   #ifdef COMBO_ENABLE
990     matrix_scan_combo();
991   #endif
992
993   #if defined(BACKLIGHT_ENABLE)
994     #if defined(LED_MATRIX_ENABLE)
995         led_matrix_task();
996     #elif defined(BACKLIGHT_PIN)
997         backlight_task();
998     #endif
999   #endif
1000
1001   #ifdef RGB_MATRIX_ENABLE
1002     rgb_matrix_task();
1003   #endif
1004
1005   #ifdef ENCODER_ENABLE
1006     encoder_read();
1007   #endif
1008
1009   #ifdef HAPTIC_ENABLE
1010     haptic_task();
1011   #endif
1012
1013   matrix_scan_kb();
1014 }
1015 #if defined(BACKLIGHT_ENABLE) && (defined(BACKLIGHT_PIN) || defined(BACKLIGHT_PINS))
1016
1017 // The logic is a bit complex, we support 3 setups:
1018 // 1. hardware PWM when backlight is wired to a PWM pin
1019 // depending on this pin, we use a different output compare unit
1020 // 2. software PWM with hardware timers, but the used timer depends
1021 // on the audio setup (audio wins other backlight)
1022 // 3. full software PWM
1023
1024 #if BACKLIGHT_PIN == B7
1025 #  define HARDWARE_PWM
1026 #  define TCCRxA TCCR1A
1027 #  define TCCRxB TCCR1B
1028 #  define COMxx1 COM1C1
1029 #  define OCRxx  OCR1C
1030 #  define ICRx   ICR1
1031 #elif BACKLIGHT_PIN == B6
1032 #  define HARDWARE_PWM
1033 #  define TCCRxA TCCR1A
1034 #  define TCCRxB TCCR1B
1035 #  define COMxx1 COM1B1
1036 #  define OCRxx  OCR1B
1037 #  define ICRx   ICR1
1038 #elif BACKLIGHT_PIN == B5
1039 #  define HARDWARE_PWM
1040 #  define TCCRxA TCCR1A
1041 #  define TCCRxB TCCR1B
1042 #  define COMxx1 COM1A1
1043 #  define OCRxx  OCR1A
1044 #  define ICRx   ICR1
1045 #elif BACKLIGHT_PIN == C6
1046 #  define HARDWARE_PWM
1047 #  define TCCRxA TCCR3A
1048 #  define TCCRxB TCCR3B
1049 #  define COMxx1 COM1A1
1050 #  define OCRxx  OCR3A
1051 #  define ICRx   ICR3
1052 #elif defined(__AVR_ATmega32A__) && BACKLIGHT_PIN == D4
1053 #  define TCCRxA TCCR1A
1054 #  define TCCRxB TCCR1B
1055 #  define COMxx1 COM1B1
1056 #  define OCRxx  OCR1B
1057 #  define ICRx   ICR1
1058 #  define TIMSK1 TIMSK
1059 #else
1060 #  if !defined(BACKLIGHT_CUSTOM_DRIVER)
1061 #    if !defined(B5_AUDIO) && !defined(B6_AUDIO) && !defined(B7_AUDIO)
1062      // timer 1 is not used by audio , backlight can use it
1063 #pragma message "Using hardware timer 1 with software PWM"
1064 #      define HARDWARE_PWM
1065 #      define BACKLIGHT_PWM_TIMER
1066 #      define TCCRxA TCCR1A
1067 #      define TCCRxB TCCR1B
1068 #      define OCRxx  OCR1A
1069 #      define OCRxAH OCR1AH
1070 #      define OCRxAL OCR1AL
1071 #      define TIMERx_COMPA_vect TIMER1_COMPA_vect
1072 #      define TIMERx_OVF_vect TIMER1_OVF_vect
1073 #      define OCIExA OCIE1A
1074 #      define TOIEx  TOIE1
1075 #      define ICRx   ICR1
1076 #      ifndef TIMSK
1077 #        define TIMSK TIMSK1
1078 #      endif
1079 #    elif !defined(C6_AUDIO) && !defined(C5_AUDIO) && !defined(C4_AUDIO)
1080 #pragma message "Using hardware timer 3 with software PWM"
1081 // timer 3 is not used by audio, backlight can use it
1082 #      define HARDWARE_PWM
1083 #      define BACKLIGHT_PWM_TIMER
1084 #      define TCCRxA TCCR3A
1085 #      define TCCRxB TCCR3B
1086 #      define OCRxx OCR3A
1087 #      define OCRxAH OCR3AH
1088 #      define OCRxAL OCR3AL
1089 #      define TIMERx_COMPA_vect TIMER3_COMPA_vect
1090 #      define TIMERx_OVF_vect TIMER3_OVF_vect
1091 #      define OCIExA OCIE3A
1092 #      define TOIEx  TOIE3
1093 #      define ICRx   ICR1
1094 #      ifndef TIMSK
1095 #        define TIMSK TIMSK3
1096 #      endif
1097 #    else
1098 #pragma message "Audio in use - using pure software PWM"
1099 #define NO_HARDWARE_PWM
1100 #    endif
1101 #  else
1102 #pragma message "Custom driver defined - using pure software PWM"
1103 #define NO_HARDWARE_PWM
1104 #  endif
1105 #endif
1106
1107 #ifndef BACKLIGHT_ON_STATE
1108 #define BACKLIGHT_ON_STATE 0
1109 #endif
1110
1111 void backlight_on(uint8_t backlight_pin) {
1112 #if BACKLIGHT_ON_STATE == 0
1113   writePinLow(backlight_pin);
1114 #else
1115   writePinHigh(backlight_pin);
1116 #endif
1117 }
1118
1119 void backlight_off(uint8_t backlight_pin) {
1120 #if BACKLIGHT_ON_STATE == 0
1121   writePinHigh(backlight_pin);
1122 #else
1123   writePinLow(backlight_pin);
1124 #endif
1125 }
1126
1127
1128 #if defined(NO_HARDWARE_PWM) || defined(BACKLIGHT_PWM_TIMER)  // pwm through software
1129
1130 // we support multiple backlight pins
1131 #ifndef BACKLIGHT_LED_COUNT
1132 #define BACKLIGHT_LED_COUNT 1
1133 #endif
1134
1135 #if BACKLIGHT_LED_COUNT == 1
1136 #define BACKLIGHT_PIN_INIT { BACKLIGHT_PIN }
1137 #else
1138 #define BACKLIGHT_PIN_INIT BACKLIGHT_PINS
1139 #endif
1140
1141 #define FOR_EACH_LED(x)                             \
1142   for (uint8_t i = 0; i < BACKLIGHT_LED_COUNT; i++) \
1143   {                                                 \
1144     uint8_t backlight_pin = backlight_pins[i];      \
1145     { \
1146       x                         \
1147     }                                             \
1148   }
1149
1150 static const uint8_t backlight_pins[BACKLIGHT_LED_COUNT] = BACKLIGHT_PIN_INIT;
1151
1152 #else // full hardware PWM
1153
1154 // we support only one backlight pin
1155 static const uint8_t backlight_pin = BACKLIGHT_PIN;
1156 #define FOR_EACH_LED(x) x
1157
1158 #endif
1159
1160 #ifdef NO_HARDWARE_PWM
1161 __attribute__((weak))
1162 void backlight_init_ports(void)
1163 {
1164   // Setup backlight pin as output and output to on state.
1165   FOR_EACH_LED(
1166     setPinOutput(backlight_pin);
1167     backlight_on(backlight_pin);
1168   )
1169 }
1170
1171 __attribute__ ((weak))
1172 void backlight_set(uint8_t level) {}
1173
1174 uint8_t backlight_tick = 0;
1175
1176 #ifndef BACKLIGHT_CUSTOM_DRIVER
1177 void backlight_task(void) {
1178   if ((0xFFFF >> ((BACKLIGHT_LEVELS - get_backlight_level()) * ((BACKLIGHT_LEVELS + 1) / 2))) & (1 << backlight_tick)) {
1179     FOR_EACH_LED(
1180       backlight_on(backlight_pin);
1181     )
1182   }
1183   else {
1184     FOR_EACH_LED(
1185       backlight_off(backlight_pin);
1186     )
1187   }
1188   backlight_tick = (backlight_tick + 1) % 16;
1189 }
1190 #endif
1191
1192 #ifdef BACKLIGHT_BREATHING
1193   #ifndef BACKLIGHT_CUSTOM_DRIVER
1194   #error "Backlight breathing only available with hardware PWM. Please disable."
1195   #endif
1196 #endif
1197
1198 #else // hardware pwm through timer
1199
1200 #ifdef BACKLIGHT_PWM_TIMER
1201
1202 // The idea of software PWM assisted by hardware timers is the following
1203 // we use the hardware timer in fast PWM mode like for hardware PWM, but
1204 // instead of letting the Output Match Comparator control the led pin
1205 // (which is not possible since the backlight is not wired to PWM pins on the
1206 // CPU), we do the LED on/off by oursleves.
1207 // The timer is setup to count up to 0xFFFF, and we set the Output Compare
1208 // register to the current 16bits backlight level (after CIE correction).
1209 // This means the CPU will trigger a compare match interrupt when the counter
1210 // reaches the backlight level, where we turn off the LEDs,
1211 // but also an overflow interrupt when the counter rolls back to 0,
1212 // in which we're going to turn on the LEDs.
1213 // The LED will then be on for OCRxx/0xFFFF time, adjusted every 244Hz.
1214
1215 // Triggered when the counter reaches the OCRx value
1216 ISR(TIMERx_COMPA_vect) {
1217   FOR_EACH_LED(
1218     backlight_off(backlight_pin);
1219   )
1220 }
1221
1222 // Triggered when the counter reaches the TOP value
1223 // this one triggers at F_CPU/65536 =~ 244 Hz
1224 ISR(TIMERx_OVF_vect) {
1225 #ifdef BACKLIGHT_BREATHING
1226   breathing_task();
1227 #endif
1228   // for very small values of OCRxx (or backlight level)
1229   // we can't guarantee this whole code won't execute
1230   // at the same time as the compare match interrupt
1231   // which means that we might turn on the leds while
1232   // trying to turn them off, leading to flickering
1233   // artifacts (especially while breathing, because breathing_task
1234   // takes many computation cycles).
1235   // so better not turn them on while the counter TOP is very low.
1236   if (OCRxx > 256) {
1237     FOR_EACH_LED(
1238       backlight_on(backlight_pin);
1239     )
1240   }
1241 }
1242
1243 #endif
1244
1245 #define TIMER_TOP 0xFFFFU
1246
1247 // See http://jared.geek.nz/2013/feb/linear-led-pwm
1248 static uint16_t cie_lightness(uint16_t v) {
1249   if (v <= 5243) // if below 8% of max
1250     return v / 9; // same as dividing by 900%
1251   else {
1252     uint32_t y = (((uint32_t) v + 10486) << 8) / (10486 + 0xFFFFUL); // add 16% of max and compare
1253     // to get a useful result with integer division, we shift left in the expression above
1254     // and revert what we've done again after squaring.
1255     y = y * y * y >> 8;
1256     if (y > 0xFFFFUL) // prevent overflow
1257       return 0xFFFFU;
1258     else
1259       return (uint16_t) y;
1260   }
1261 }
1262
1263 // range for val is [0..TIMER_TOP]. PWM pin is high while the timer count is below val.
1264 static inline void set_pwm(uint16_t val) {
1265         OCRxx = val;
1266 }
1267
1268 #ifndef BACKLIGHT_CUSTOM_DRIVER
1269 __attribute__ ((weak))
1270 void backlight_set(uint8_t level) {
1271   if (level > BACKLIGHT_LEVELS)
1272     level = BACKLIGHT_LEVELS;
1273
1274   if (level == 0) {
1275     #ifdef BACKLIGHT_PWM_TIMER
1276       if (OCRxx) {
1277         TIMSK &= ~(_BV(OCIExA));
1278         TIMSK &= ~(_BV(TOIEx));
1279         FOR_EACH_LED(
1280           backlight_off(backlight_pin);
1281         )
1282       }
1283     #else
1284     // Turn off PWM control on backlight pin
1285     TCCRxA &= ~(_BV(COMxx1));
1286     #endif
1287   } else {
1288     #ifdef BACKLIGHT_PWM_TIMER
1289       if (!OCRxx) {
1290         TIMSK |= _BV(OCIExA);
1291         TIMSK |= _BV(TOIEx);
1292       }
1293     #else
1294     // Turn on PWM control of backlight pin
1295     TCCRxA |= _BV(COMxx1);
1296     #endif
1297   }
1298   // Set the brightness
1299   set_pwm(cie_lightness(TIMER_TOP * (uint32_t)level / BACKLIGHT_LEVELS));
1300 }
1301
1302 void backlight_task(void) {}
1303 #endif  // BACKLIGHT_CUSTOM_DRIVER
1304
1305 #ifdef BACKLIGHT_BREATHING
1306
1307 #define BREATHING_NO_HALT  0
1308 #define BREATHING_HALT_OFF 1
1309 #define BREATHING_HALT_ON  2
1310 #define BREATHING_STEPS 128
1311
1312 static uint8_t breathing_period = BREATHING_PERIOD;
1313 static uint8_t breathing_halt = BREATHING_NO_HALT;
1314 static uint16_t breathing_counter = 0;
1315
1316 #ifdef BACKLIGHT_PWM_TIMER
1317 static bool breathing = false;
1318
1319 bool is_breathing(void) {
1320   return breathing;
1321 }
1322
1323 #define breathing_interrupt_enable() do { breathing = true; } while (0)
1324 #define breathing_interrupt_disable() do { breathing = false; } while (0)
1325 #else
1326
1327 bool is_breathing(void) {
1328     return !!(TIMSK1 & _BV(TOIE1));
1329 }
1330
1331 #define breathing_interrupt_enable() do {TIMSK1 |= _BV(TOIE1);} while (0)
1332 #define breathing_interrupt_disable() do {TIMSK1 &= ~_BV(TOIE1);} while (0)
1333 #endif
1334
1335 #define breathing_min() do {breathing_counter = 0;} while (0)
1336 #define breathing_max() do {breathing_counter = breathing_period * 244 / 2;} while (0)
1337
1338 void breathing_enable(void)
1339 {
1340   breathing_counter = 0;
1341   breathing_halt = BREATHING_NO_HALT;
1342   breathing_interrupt_enable();
1343 }
1344
1345 void breathing_pulse(void)
1346 {
1347     if (get_backlight_level() == 0)
1348       breathing_min();
1349     else
1350       breathing_max();
1351     breathing_halt = BREATHING_HALT_ON;
1352     breathing_interrupt_enable();
1353 }
1354
1355 void breathing_disable(void)
1356 {
1357     breathing_interrupt_disable();
1358     // Restore backlight level
1359     backlight_set(get_backlight_level());
1360 }
1361
1362 void breathing_self_disable(void)
1363 {
1364   if (get_backlight_level() == 0)
1365     breathing_halt = BREATHING_HALT_OFF;
1366   else
1367     breathing_halt = BREATHING_HALT_ON;
1368 }
1369
1370 void breathing_toggle(void) {
1371   if (is_breathing())
1372     breathing_disable();
1373   else
1374     breathing_enable();
1375 }
1376
1377 void breathing_period_set(uint8_t value)
1378 {
1379   if (!value)
1380     value = 1;
1381   breathing_period = value;
1382 }
1383
1384 void breathing_period_default(void) {
1385   breathing_period_set(BREATHING_PERIOD);
1386 }
1387
1388 void breathing_period_inc(void)
1389 {
1390   breathing_period_set(breathing_period+1);
1391 }
1392
1393 void breathing_period_dec(void)
1394 {
1395   breathing_period_set(breathing_period-1);
1396 }
1397
1398 /* To generate breathing curve in python:
1399  * from math import sin, pi; [int(sin(x/128.0*pi)**4*255) for x in range(128)]
1400  */
1401 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};
1402
1403 // Use this before the cie_lightness function.
1404 static inline uint16_t scale_backlight(uint16_t v) {
1405   return v / BACKLIGHT_LEVELS * get_backlight_level();
1406 }
1407
1408 #ifdef BACKLIGHT_PWM_TIMER
1409 void breathing_task(void)
1410 #else
1411 /* Assuming a 16MHz CPU clock and a timer that resets at 64k (ICR1), the following interrupt handler will run
1412  * about 244 times per second.
1413  */
1414 ISR(TIMER1_OVF_vect)
1415 #endif
1416 {
1417   uint16_t interval = (uint16_t) breathing_period * 244 / BREATHING_STEPS;
1418   // resetting after one period to prevent ugly reset at overflow.
1419   breathing_counter = (breathing_counter + 1) % (breathing_period * 244);
1420   uint8_t index = breathing_counter / interval % BREATHING_STEPS;
1421
1422   if (((breathing_halt == BREATHING_HALT_ON) && (index == BREATHING_STEPS / 2)) ||
1423       ((breathing_halt == BREATHING_HALT_OFF) && (index == BREATHING_STEPS - 1)))
1424   {
1425       breathing_interrupt_disable();
1426   }
1427
1428   set_pwm(cie_lightness(scale_backlight((uint16_t) pgm_read_byte(&breathing_table[index]) * 0x0101U)));
1429 }
1430
1431 #endif // BACKLIGHT_BREATHING
1432
1433 __attribute__ ((weak))
1434 void backlight_init_ports(void)
1435 {
1436   // Setup backlight pin as output and output to on state.
1437   FOR_EACH_LED(
1438     setPinOutput(backlight_pin);
1439     backlight_on(backlight_pin);
1440   )
1441
1442   // I could write a wall of text here to explain... but TL;DW
1443   // Go read the ATmega32u4 datasheet.
1444   // And this: http://blog.saikoled.com/post/43165849837/secret-konami-cheat-code-to-high-resolution-pwm-on
1445
1446 #ifdef BACKLIGHT_PWM_TIMER
1447   // TimerX setup, Fast PWM mode count to TOP set in ICRx
1448   TCCRxA = _BV(WGM11); // = 0b00000010;
1449   // clock select clk/1
1450   TCCRxB = _BV(WGM13) | _BV(WGM12) | _BV(CS10); // = 0b00011001;
1451 #else // hardware PWM
1452   // Pin PB7 = OCR1C (Timer 1, Channel C)
1453   // Compare Output Mode = Clear on compare match, Channel C = COM1C1=1 COM1C0=0
1454   // (i.e. start high, go low when counter matches.)
1455   // WGM Mode 14 (Fast PWM) = WGM13=1 WGM12=1 WGM11=1 WGM10=0
1456   // Clock Select = clk/1 (no prescaling) = CS12=0 CS11=0 CS10=1
1457
1458   /*
1459   14.8.3:
1460   "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 [..]."
1461   "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)."
1462   */
1463   TCCRxA = _BV(COMxx1) | _BV(WGM11);            // = 0b00001010;
1464   TCCRxB = _BV(WGM13) | _BV(WGM12) | _BV(CS10); // = 0b00011001;
1465 #endif
1466   // Use full 16-bit resolution. Counter counts to ICR1 before reset to 0.
1467   ICRx = TIMER_TOP;
1468
1469   backlight_init();
1470   #ifdef BACKLIGHT_BREATHING
1471     breathing_enable();
1472   #endif
1473 }
1474
1475 #endif // hardware backlight
1476
1477 #else // no backlight
1478
1479 __attribute__ ((weak))
1480 void backlight_init_ports(void) {}
1481
1482 __attribute__ ((weak))
1483 void backlight_set(uint8_t level) {}
1484
1485 #endif // backlight
1486
1487 #ifdef HD44780_ENABLED
1488 #include "hd44780.h"
1489 #endif
1490
1491
1492 // Functions for spitting out values
1493 //
1494
1495 void send_dword(uint32_t number) { // this might not actually work
1496     uint16_t word = (number >> 16);
1497     send_word(word);
1498     send_word(number & 0xFFFFUL);
1499 }
1500
1501 void send_word(uint16_t number) {
1502     uint8_t byte = number >> 8;
1503     send_byte(byte);
1504     send_byte(number & 0xFF);
1505 }
1506
1507 void send_byte(uint8_t number) {
1508     uint8_t nibble = number >> 4;
1509     send_nibble(nibble);
1510     send_nibble(number & 0xF);
1511 }
1512
1513 void send_nibble(uint8_t number) {
1514     switch (number) {
1515         case 0:
1516             register_code(KC_0);
1517             unregister_code(KC_0);
1518             break;
1519         case 1 ... 9:
1520             register_code(KC_1 + (number - 1));
1521             unregister_code(KC_1 + (number - 1));
1522             break;
1523         case 0xA ... 0xF:
1524             register_code(KC_A + (number - 0xA));
1525             unregister_code(KC_A + (number - 0xA));
1526             break;
1527     }
1528 }
1529
1530
1531 __attribute__((weak))
1532 uint16_t hex_to_keycode(uint8_t hex)
1533 {
1534   hex = hex & 0xF;
1535   if (hex == 0x0) {
1536     return KC_0;
1537   } else if (hex < 0xA) {
1538     return KC_1 + (hex - 0x1);
1539   } else {
1540     return KC_A + (hex - 0xA);
1541   }
1542 }
1543
1544 void api_send_unicode(uint32_t unicode) {
1545 #ifdef API_ENABLE
1546     uint8_t chunk[4];
1547     dword_to_bytes(unicode, chunk);
1548     MT_SEND_DATA(DT_UNICODE, chunk, 5);
1549 #endif
1550 }
1551
1552 __attribute__ ((weak))
1553 void led_set_user(uint8_t usb_led) {
1554
1555 }
1556
1557 __attribute__ ((weak))
1558 void led_set_kb(uint8_t usb_led) {
1559     led_set_user(usb_led);
1560 }
1561
1562 __attribute__ ((weak))
1563 void led_init_ports(void)
1564 {
1565
1566 }
1567
1568 __attribute__ ((weak))
1569 void led_set(uint8_t usb_led)
1570 {
1571
1572   // Example LED Code
1573   //
1574     // // Using PE6 Caps Lock LED
1575     // if (usb_led & (1<<USB_LED_CAPS_LOCK))
1576     // {
1577     //     // Output high.
1578     //     DDRE |= (1<<6);
1579     //     PORTE |= (1<<6);
1580     // }
1581     // else
1582     // {
1583     //     // Output low.
1584     //     DDRE &= ~(1<<6);
1585     //     PORTE &= ~(1<<6);
1586     // }
1587
1588 #if defined(BACKLIGHT_CAPS_LOCK) && defined(BACKLIGHT_ENABLE)
1589   // Use backlight as Caps Lock indicator
1590   uint8_t bl_toggle_lvl = 0;
1591
1592   if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK) && !backlight_config.enable) {
1593     // Turning Caps Lock ON and backlight is disabled in config
1594     // Toggling backlight to the brightest level
1595     bl_toggle_lvl = BACKLIGHT_LEVELS;
1596   } else if (IS_LED_OFF(usb_led, USB_LED_CAPS_LOCK) && backlight_config.enable) {
1597     // Turning Caps Lock OFF and backlight is enabled in config
1598     // Toggling backlight and restoring config level
1599     bl_toggle_lvl = backlight_config.level;
1600   }
1601
1602   // Set level without modify backlight_config to keep ability to restore state
1603   backlight_set(bl_toggle_lvl);
1604 #endif
1605
1606   led_set_kb(usb_led);
1607 }
1608
1609
1610 //------------------------------------------------------------------------------
1611 // Override these functions in your keymap file to play different tunes on
1612 // different events such as startup and bootloader jump
1613
1614 __attribute__ ((weak))
1615 void startup_user() {}
1616
1617 __attribute__ ((weak))
1618 void shutdown_user() {}
1619
1620 //------------------------------------------------------------------------------