You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							93 lines
						
					
					
						
							2.9 KiB
						
					
					
				
			
		
		
	
	
							93 lines
						
					
					
						
							2.9 KiB
						
					
					
				| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| #include <util/delay.h>
 | |
| #include "matrix.h"
 | |
| #include "bootloader.h"
 | |
| #include "debug.h"
 | |
| #include "keymap.h"
 | |
| #include "eeconfig.h"
 | |
| #include "bootmagic.h"
 | |
| 
 | |
| 
 | |
| void bootmagic(void)
 | |
| {
 | |
|     /* check signature */
 | |
|     if (!eeconfig_is_enabled()) {
 | |
|         eeconfig_init();
 | |
|     }
 | |
| 
 | |
|     /* do scans in case of bounce */
 | |
|     uint8_t scan = 100;
 | |
|     while (scan--) { matrix_scan(); _delay_ms(10); }
 | |
| 
 | |
|     /* bootmagic skip */
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_SKIP)) {
 | |
|         return;
 | |
|     }
 | |
| 
 | |
|     /* eeconfig clear */
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_EEPROM_CLEAR)) {
 | |
|         eeconfig_init();
 | |
|     }
 | |
| 
 | |
|     /* bootloader */
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_BOOTLOADER)) {
 | |
|         bootloader_jump();
 | |
|     }
 | |
| 
 | |
|     /* debug enable */
 | |
|     debug_config.raw = eeconfig_read_debug();
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_DEBUG_ENABLE)) {
 | |
|         if (bootmagic_scan_keycode(BOOTMAGIC_KEY_DEBUG_MATRIX)) {
 | |
|             debug_config.matrix = !debug_config.matrix;
 | |
|         } else if (bootmagic_scan_keycode(BOOTMAGIC_KEY_DEBUG_KEYBOARD)) {
 | |
|             debug_config.keyboard = !debug_config.keyboard;
 | |
|         } else if (bootmagic_scan_keycode(BOOTMAGIC_KEY_DEBUG_MOUSE)) {
 | |
|             debug_config.mouse = !debug_config.mouse;
 | |
|         } else {
 | |
|             debug_config.enable = !debug_config.enable;
 | |
|         }
 | |
|     }
 | |
|     eeconfig_write_debug(debug_config.raw);
 | |
| 
 | |
|     /* keymap config */
 | |
|     keymap_config.raw = eeconfig_read_keymap();
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_SWAP_CONTROL_CPASLOCK)) {
 | |
|         keymap_config.swap_control_capslock = !keymap_config.swap_control_capslock;
 | |
|     }
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_CAPSLOCK_TO_CONTROL)) {
 | |
|         keymap_config.capslock_to_control = !keymap_config.capslock_to_control;
 | |
|     }
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_SWAP_LALT_LGUI)) {
 | |
|         keymap_config.swap_lalt_lgui = !keymap_config.swap_lalt_lgui;
 | |
|     }
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_SWAP_RALT_RGUI)) {
 | |
|         keymap_config.swap_ralt_rgui = !keymap_config.swap_ralt_rgui;
 | |
|     }
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_NO_GUI)) {
 | |
|         keymap_config.no_gui = !keymap_config.no_gui;
 | |
|     }
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_SWAP_GRAVE_ESC)) {
 | |
|         keymap_config.swap_grave_esc = !keymap_config.swap_grave_esc;
 | |
|     }
 | |
|     if (bootmagic_scan_keycode(BOOTMAGIC_KEY_SWAP_BACKSLASH_BACKSPACE)) {
 | |
|         keymap_config.swap_backslash_backspace = !keymap_config.swap_backslash_backspace;
 | |
|     }
 | |
|     eeconfig_write_keymap(keymap_config.raw);
 | |
| }
 | |
| 
 | |
| bool bootmagic_scan_keycode(uint8_t keycode)
 | |
| {
 | |
|     for (uint8_t r = 0; r < MATRIX_ROWS; r++) {
 | |
|         matrix_row_t matrix_row = matrix_get_row(r);
 | |
|         for (uint8_t c = 0; c < MATRIX_COLS; c++) {
 | |
|             if (matrix_row & ((matrix_row_t)1<<c)) {
 | |
|                 if (keycode == keymap_key_to_keycode(0, (key_t){ .row = r, .col = c })) {
 | |
|                     return true;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
|     return false;
 | |
| }
 |