mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 21:32:31 +01:00 
			
		
		
		
	 eb91c96288
			
		
	
	
		eb91c96288
		
			
		
	
	
	
	
		
			
			* Add Kyria Keymap * Enable all RGBLIGHT Animations for ARM and high capacity AVR * Reduce GNUC version for __has_include * Cleanup Ortho 4x12 Community layout * Update Collide 39 keymap * Cleanup Keymaps * Enable full 30 LEDs for Ergodox * Change EEPROM Load timing * Use RGB Matrix on Planck Rev6 * Use correct keymap swap * Enable everything for ARM * Only enable rgb sleep on avr until crash is fixed * Add additional Kyria keymap config * Overhaul Kyria OLED display * Improve kyria keymap based on usage * Minor tweaks to rules * Update OLED code to truncate properly * Fix RGB Light layer indication * Switch all of biton32 to get_highest_layer function * Fix OLED Keylogger display * Run qmk cformat over all of my user files * Slight tweak to kyria based on usage * Move around LALT_T config * Add comments about base wrappers to keymaps * Another cformat pass * Temp fix for VUSB boards and NKRO * Convert tabs to spaces in rules.mk files * Only enable RGBLight if it's enabled * Add Encoder Flip setting * Update OLED font file
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "template.h"
 | |
| 
 | |
| // Add reconfigurable functions here, for keymap customization
 | |
| // This allows for a global, userspace functions, and continued
 | |
| // customization of the keymap.  Use _keymap instead of _user
 | |
| // functions in the keymaps
 | |
| __attribute__((weak)) void matrix_init_keymap(void) {}
 | |
| 
 | |
| // Call user matrix init, then call the keymap's init function
 | |
| void matrix_init_user(void) { matrix_init_keymap(); }
 | |
| 
 | |
| __attribute__((weak)) void matrix_scan_keymap(void) {}
 | |
| 
 | |
| // No global matrix scan code, so just run keymap's matix
 | |
| // scan function
 | |
| void matrix_scan_user(void) { matrix_scan_keymap(); }
 | |
| 
 | |
| __attribute__((weak)) bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { return true; }
 | |
| 
 | |
| // Defines actions tor my global custom keycodes. Defined in drashna.h file
 | |
| // Then runs the _keymap's recod handier if not processed here,
 | |
| // And use "NEWPLACEHOLDER" for new safe range
 | |
| bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | |
|     switch (keycode) {
 | |
|         case KC_MAKE:
 | |
|             if (!record->event.pressed) {
 | |
|                 SEND_STRING("make " QMK_KEYBOARD ":" QMK_KEYMAP
 | |
| #if (defined(BOOTLOADER_DFU) || defined(BOOTLOADER_LUFA_DFU) || defined(BOOTLOADER_QMK_DFU))
 | |
|                             ":dfu"
 | |
| #elif defined(BOOTLOADER_HALFKAY)
 | |
|                             ":teensy"
 | |
| #elif defined(BOOTLOADER_CATERINA)
 | |
|                             ":avrdude"
 | |
| #endif
 | |
|                             SS_TAP(X_ENTER));
 | |
|             }
 | |
|             return false;
 | |
|             break;
 | |
| 
 | |
|         case VRSN:
 | |
|             if (record->event.pressed) {
 | |
|                 SEND_STRING(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION);
 | |
|             }
 | |
|             return false;
 | |
|             break;
 | |
|     }
 | |
|     return process_record_keymap(keycode, record);
 | |
| }
 | |
| 
 | |
| __attribute__((weak)) layer_state_t layer_state_set_keymap(layer_state_t state) { return state; }
 | |
| 
 | |
| layer_state_t layer_state_set_user(layer_state_t state) { return layer_state_set_keymap(state); }
 | |
| 
 | |
| __attribute__((weak)) void led_set_keymap(uint8_t usb_led) {}
 | |
| 
 | |
| void led_set_user(uint8_t usb_led) { led_set_keymap(usb_led); }
 | |
| 
 | |
| __attribute__((weak)) void suspend_power_down_keymap(void) {}
 | |
| 
 | |
| void suspend_power_down_user(void) { suspend_power_down_keymap(); }
 | |
| 
 | |
| __attribute__((weak)) void suspend_wakeup_init_keymap(void) {}
 | |
| 
 | |
| void suspend_wakeup_init_user(void) {
 | |
|     suspend_wakeup_init_keymap();
 | |
| #ifdef KEYBOARD_ergodox_ez
 | |
|     wait_ms(10);
 | |
| #endif
 | |
| }
 | |
| 
 | |
| __attribute__((weak)) void startup_keymap(void) {}
 | |
| 
 | |
| void startup_user(void) {
 | |
| #ifdef RGBLIGHT_ENABLE
 | |
|     matrix_init_rgb();
 | |
| #endif  // RGBLIGHT_ENABLE
 | |
|     startup_keymap();
 | |
| }
 | |
| 
 | |
| __attribute__((weak)) void shutdown_keymap(void) {}
 | |
| 
 | |
| void shutdown_user(void) { shutdown_keymap(); }
 |