Skip to content

Commit

Permalink
Add waits to prevent KVM from hanging
Browse files Browse the repository at this point in the history
  • Loading branch information
uzytkownik committed Mar 17, 2016
1 parent fb3b7f3 commit cf986ba
Show file tree
Hide file tree
Showing 2 changed files with 1,492 additions and 1,490 deletions.
8 changes: 4 additions & 4 deletions keyboard/ergodox_ez/keymaps/mpiechotka/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,22 +225,22 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
break;
case PC1:
if (!record->event.pressed) {
return MACRO(T(SLCK), T(SLCK), T(1), T(ENT), END);
return MACRO(T(SLCK), W(50), T(SLCK), W(50), T(1), W(50), T(ENT), END);
}
break;
case PC2:
if (!record->event.pressed) {
return MACRO(T(SLCK), T(SLCK), T(2), T(ENT), END);
return MACRO(T(SLCK), W(50), T(SLCK), W(50), T(2), W(50), T(ENT), END);
}
break;
case PC3:
if (!record->event.pressed) {
return MACRO(T(SLCK), T(SLCK), T(3), T(ENT), END);
return MACRO(T(SLCK), W(50), T(SLCK), W(50), T(3), W(50), T(ENT), END);
}
break;
case PC4:
if (!record->event.pressed) {
return MACRO(T(SLCK), T(SLCK), T(4), T(ENT), END);
return MACRO(T(SLCK), W(50), T(SLCK), W(50), T(4), W(50), T(ENT), END);
}
break;
}
Expand Down
Loading

0 comments on commit cf986ba

Please sign in to comment.