* ifdef rgb stuff like a madman for RGB Coexistance * Re-enable RGB Light on Planck * fix RGB Coexistance issue * Tweak feature settings for Ergodox EZ Glow * Their powers combine, and I am Captain RGB This one is for noroadsleft and yan. * Limit brightness when both RGB features are enabled * Change shutdown method * Add RGB Coexistience stuff to keymap * disable RGBLIGHT_SLEEP until a solution can be found * Disable Unicode on the kyria * Fix up Iris rev defines * Fix up community layouts to compile properly * Cleanup rgb stuff * Merge ergodox keymaps * Update CCCV macro to use tap_code16 * Enable Solenoid on C39 Because josh couldn't * Enable RGB Light, not Matrix on rev6 keymap * Only enable LTO on non-ARM boards * Clean up Bootmagic OLED display * Enable RGBLIGHT_SPLIT on kyria Not that it does anything * Add hotkey for discord
		
			
				
	
	
		
			118 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "drashna.h"
 | 
						|
 | 
						|
uint16_t copy_paste_timer;
 | 
						|
 | 
						|
__attribute__((weak)) bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { return true; }
 | 
						|
 | 
						|
__attribute__((weak)) bool process_record_secrets(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 record handier if not processed here
 | 
						|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | 
						|
    // If console is enabled, it will print the matrix position and status of each key pressed
 | 
						|
#ifdef KEYLOGGER_ENABLE
 | 
						|
#    if defined(KEYBOARD_ergodox_ez) || defined(KEYBOARD_keebio_iris_rev2)
 | 
						|
    xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.row, record->event.key.col, record->event.pressed);
 | 
						|
#    else
 | 
						|
    xprintf("KL: kc: %u, col: %u, row: %u, pressed: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed);
 | 
						|
#    endif
 | 
						|
#endif  // KEYLOGGER_ENABLE
 | 
						|
 | 
						|
    switch (keycode) {
 | 
						|
        case KC_QWERTY ... KC_WORKMAN:
 | 
						|
            if (record->event.pressed) {
 | 
						|
                uint8_t mods = mod_config(get_mods() | get_oneshot_mods());
 | 
						|
                if (!mods) {
 | 
						|
                    set_single_persistent_default_layer(keycode - KC_QWERTY);
 | 
						|
                } else if (mods & MOD_MASK_SHIFT) {
 | 
						|
                    set_single_persistent_default_layer(keycode - KC_QWERTY + 4);
 | 
						|
                } else if (mods & MOD_MASK_CTRL) {
 | 
						|
                    set_single_persistent_default_layer(keycode - KC_QWERTY + 8);
 | 
						|
                }
 | 
						|
            }
 | 
						|
            break;
 | 
						|
 | 
						|
        case KC_MAKE:  // Compiles the firmware, and adds the flash command based on keyboard bootloader
 | 
						|
            if (!record->event.pressed) {
 | 
						|
                uint8_t temp_mod = mod_config(get_mods());
 | 
						|
                uint8_t temp_osm = mod_config(get_oneshot_mods());
 | 
						|
                clear_mods();
 | 
						|
                clear_oneshot_mods();
 | 
						|
                send_string_with_delay_P(PSTR("make " QMK_KEYBOARD ":" QMK_KEYMAP), TAP_CODE_DELAY);
 | 
						|
#ifndef MAKE_BOOTLOADER
 | 
						|
                if ((temp_mod | temp_osm) & MOD_MASK_SHIFT)
 | 
						|
#endif
 | 
						|
                {
 | 
						|
                    send_string_with_delay_P(PSTR(":flash"), TAP_CODE_DELAY);
 | 
						|
                }
 | 
						|
                if ((temp_mod | temp_osm) & MOD_MASK_CTRL) {
 | 
						|
                    send_string_with_delay_P(PSTR(" -j8 --output-sync"), TAP_CODE_DELAY);
 | 
						|
                }
 | 
						|
#ifdef RGB_MATRIX_SPLIT_RIGHT
 | 
						|
                send_string_with_delay_P(PSTR(" RGB_MATRIX_SPLIT_RIGHT=yes"), TAP_CODE_DELAY);
 | 
						|
#    ifndef OLED_DRIVER_ENABLE
 | 
						|
                send_string_with_delay_P(PSTR(" OLED_DRIVER_ENABLE=no"), TAP_CODE_DELAY);
 | 
						|
#    endif
 | 
						|
#endif
 | 
						|
                send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), TAP_CODE_DELAY);
 | 
						|
            }
 | 
						|
 | 
						|
            break;
 | 
						|
 | 
						|
        case VRSN:  // Prints firmware version
 | 
						|
            if (record->event.pressed) {
 | 
						|
                send_string_with_delay_P(PSTR(QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION ", Built on: " QMK_BUILDDATE), TAP_CODE_DELAY);
 | 
						|
            }
 | 
						|
            break;
 | 
						|
 | 
						|
        case KC_DIABLO_CLEAR:  // reset all Diablo timers, disabling them
 | 
						|
#ifdef TAP_DANCE_ENABLE
 | 
						|
            if (record->event.pressed) {
 | 
						|
                for (uint8_t index = 0; index < 4; index++) {
 | 
						|
                    diablo_timer[index].key_interval = 0;
 | 
						|
                }
 | 
						|
            }
 | 
						|
#endif  // TAP_DANCE_ENABLE
 | 
						|
            break;
 | 
						|
 | 
						|
        case KC_CCCV:  // One key copy/paste
 | 
						|
            if (record->event.pressed) {
 | 
						|
                copy_paste_timer = timer_read();
 | 
						|
            } else {
 | 
						|
                if (timer_elapsed(copy_paste_timer) > TAPPING_TERM) {  // Hold, copy
 | 
						|
                    tap_code16(LCTL(KC_C));
 | 
						|
                } else {  // Tap, paste
 | 
						|
                    tap_code16(LCTL(KC_V));
 | 
						|
                }
 | 
						|
            }
 | 
						|
            break;
 | 
						|
#ifdef UNICODE_ENABLE
 | 
						|
        case UC_FLIP:  // (ノಠ痊ಠ)ノ彡┻━┻
 | 
						|
            if (record->event.pressed) {
 | 
						|
                send_unicode_hex_string("0028 30CE 0CA0 75CA 0CA0 0029 30CE 5F61 253B 2501 253B");
 | 
						|
            }
 | 
						|
            break;
 | 
						|
        case UC_TABL:  // ┬─┬ノ( º _ ºノ)
 | 
						|
            if (record->event.pressed) {
 | 
						|
                send_unicode_hex_string("252C 2500 252C 30CE 0028 0020 00BA 0020 005F 0020 00BA 30CE 0029");
 | 
						|
            }
 | 
						|
            break;
 | 
						|
        case UC_SHRG:  // ¯\_(ツ)_/¯
 | 
						|
            if (record->event.pressed) {
 | 
						|
                send_unicode_hex_string("00AF 005C 005F 0028 30C4 0029 005F 002F 00AF");
 | 
						|
            }
 | 
						|
            break;
 | 
						|
        case UC_DISA:  // ಠ_ಠ
 | 
						|
            if (record->event.pressed) {
 | 
						|
                send_unicode_hex_string("0CA0 005F 0CA0");
 | 
						|
            }
 | 
						|
            break;
 | 
						|
#endif
 | 
						|
    }
 | 
						|
    return process_record_keymap(keycode, record) &&
 | 
						|
#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
 | 
						|
           process_record_user_rgb(keycode, record) &&
 | 
						|
#endif  // RGBLIGHT_ENABLE
 | 
						|
           process_record_secrets(keycode, record);
 | 
						|
}
 |