mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-18 09:55:48 +00:00
Update KC_MAKE macro to better handle crkbd split
This commit is contained in:
parent
05e2baaa49
commit
bcfc24fd13
1 changed files with 17 additions and 13 deletions
|
@ -53,8 +53,12 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
#endif // bootloader options
|
#endif // bootloader options
|
||||||
}
|
}
|
||||||
if ( ( temp_mod | temp_osm ) & MOD_MASK_CTRL) { send_string_with_delay_P(PSTR(" -j8 --output-sync"), 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 OLED_DRIVER_ENABLE=no"), TAP_CODE_DELAY);
|
||||||
|
#endif
|
||||||
send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), TAP_CODE_DELAY);
|
send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), TAP_CODE_DELAY);
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case VRSN: // Prints firmware version
|
case VRSN: // Prints firmware version
|
||||||
|
|
Loading…
Reference in a new issue