diff options
author | xyzz <1065521+xyzz@users.noreply.github.com> | 2021-03-14 21:19:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-15 12:19:01 +1100 |
commit | 0779c34db8ba0bf7141712377b1db467394f940f (patch) | |
tree | 00f2239bff1bf71d300e1a65cd6ffd468040ff01 /quantum/quantum_keycodes.h | |
parent | 9e1d04fea77c4da64248e7870b915939a768c5c0 (diff) | |
download | qmk_firmware-0779c34db8ba0bf7141712377b1db467394f940f.tar.gz qmk_firmware-0779c34db8ba0bf7141712377b1db467394f940f.zip |
Fix keycode mappings for via and ensure they don't change within protocol (#12130)
* Fix keycode mappings for via and ensure they don't change within protocol
* Update keycodes
* Fix broken keyboards
* added the missing keycodes found in via
* Remove invalid keycodes
Co-authored-by: David Hoelscher <infinityis@users.noreply.github.com>
Diffstat (limited to 'quantum/quantum_keycodes.h')
-rw-r--r-- | quantum/quantum_keycodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum_keycodes.h b/quantum/quantum_keycodes.h index 1863a7943..9f1591458 100644 --- a/quantum/quantum_keycodes.h +++ b/quantum/quantum_keycodes.h | |||
@@ -332,7 +332,11 @@ enum quantum_keycodes { | |||
332 | 332 | ||
333 | MIDI_VELOCITY_MIN, | 333 | MIDI_VELOCITY_MIN, |
334 | MI_VEL_0 = MIDI_VELOCITY_MIN, | 334 | MI_VEL_0 = MIDI_VELOCITY_MIN, |
335 | #ifdef VIA_ENABLE | ||
336 | MI_VEL_1 = MIDI_VELOCITY_MIN, | ||
337 | #else | ||
335 | MI_VEL_1, | 338 | MI_VEL_1, |
339 | #endif | ||
336 | MI_VEL_2, | 340 | MI_VEL_2, |
337 | MI_VEL_3, | 341 | MI_VEL_3, |
338 | MI_VEL_4, | 342 | MI_VEL_4, |