vial/encoders: replace 254 magic with a constant

This commit is contained in:
Ilya Zhuravlev 2021-01-03 09:12:16 -05:00
parent 32984ea0c9
commit e2447a0eea
3 changed files with 6 additions and 3 deletions

View file

@ -163,10 +163,10 @@ static void exec_keycode(uint16_t keycode) {
g_vial_magic_keycode_override = keycode;
action_exec((keyevent_t){
.key = (keypos_t){.row = 254, .col = 254}, .pressed = 1, .time = (timer_read() | 1) /* time should not be 0 */
.key = (keypos_t){.row = VIAL_ENCODER_MATRIX_MAGIC, .col = VIAL_ENCODER_MATRIX_MAGIC}, .pressed = 1, .time = (timer_read() | 1) /* time should not be 0 */
});
action_exec((keyevent_t){
.key = (keypos_t){.row = 254, .col = 254}, .pressed = 0, .time = (timer_read() | 1) /* time should not be 0 */
.key = (keypos_t){.row = VIAL_ENCODER_MATRIX_MAGIC, .col = VIAL_ENCODER_MATRIX_MAGIC}, .pressed = 0, .time = (timer_read() | 1) /* time should not be 0 */
});
}