Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Keymap] Big Drashna code update #6639

Merged
merged 33 commits into from
Sep 7, 2019
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
86100b4
Add a quefrency keymap
drashna Jul 26, 2019
1b2cbc0
New Alt-ernate layouts
drashna Jul 26, 2019
c43558d
Enable Per Key Tapping Term to preserve sanity
drashna Jul 26, 2019
190b271
Use underglow and mod lights for status on Corne
drashna Jul 28, 2019
112b141
Update the drashna_ms keymap for quefrency
drashna Aug 18, 2019
4eef51c
Update KC_MAKE to ues :flash target
drashna Aug 21, 2019
a3edaee
Disable Audio since there isn't enough space
drashna Jul 20, 2019
dbb818c
Cleanup ergodox layout
drashna Jul 23, 2019
3f647d2
Enable i2c support for Iris
drashna Jul 27, 2019
b5ebc41
Add keymap support for CG_SWAP
drashna Jun 13, 2019
ed74042
Enable RGB Matrix Shutdown mode
drashna Aug 22, 2019
714ec3a
Update gitlab CI to install python3
drashna Aug 22, 2019
9f04183
enable heatmap
drashna May 8, 2019
b98c270
Remove game macros
drashna Aug 24, 2019
87bd19d
Cleanup planck layout
drashna Aug 24, 2019
b3b8cc6
Add RGB Matrix fun and RGB cleanup
drashna Aug 25, 2019
0c87823
Add keycode and config for RGB Matrix idle animations
drashna Aug 25, 2019
bb8b61b
Clean up rgb idle animation code
drashna Aug 25, 2019
7006c4a
Add rgb idle keycode to keymaps
drashna Aug 25, 2019
c6c674c
Fix issues with rgb matrix idle animation
drashna Aug 25, 2019
38d1d92
Fix some handling for idle animation
drashna Aug 25, 2019
18d8f14
Reduce idle animation timeout to 15s to be more reasonable
drashna Aug 26, 2019
c502dda
fix up rgb stuff
drashna Aug 26, 2019
cc1366d
Fix isses with rgb functions not being called for matrix
drashna Aug 26, 2019
68e6244
Use custom EEPROM Magic Number so testing is easier
drashna Aug 28, 2019
b9689fe
Extend Default Layer macro to support a lot more layers
drashna Sep 2, 2019
6b8da6d
Fix bjohnson macropad
drashna Sep 2, 2019
7b1bf36
Adjust KC_MAKE to process mods for more consistent behavior
drashna Sep 2, 2019
247d6a1
Fix up rgb stuff on corne
drashna Sep 4, 2019
e34b645
Corne OLED Overhaul
drashna Sep 5, 2019
b8dd527
Update polling rate on all keebs
drashna Sep 6, 2019
f1f4965
Fix planck ez layout config
drashna Sep 7, 2019
0586588
Remove macros from Viterbi
drashna Sep 7, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adjust KC_MAKE to process mods for more consistent behavior
  • Loading branch information
drashna committed Sep 6, 2019
commit 7b1bf3647bac604541b32c757ff80a496a1f39e3
4 changes: 2 additions & 2 deletions users/drashna/process_records.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {

case KC_MAKE: // Compiles the firmware, and adds the flash command based on keyboard bootloader
if (!record->event.pressed) {
uint8_t temp_mod = get_mods();
uint8_t temp_osm = get_oneshot_mods();
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);
Expand Down