forked from mirrors/qmk_userspace
Normalise Dynamic Macro keycodes (#18939)
* `DYN_REC_START1` -> `QK_DYNAMIC_MACRO_RECORD_START_1` * `DYN_REC_START2` -> `QK_DYNAMIC_MACRO_RECORD_START_2` * `DYN_MACRO_PLAY1` -> `QK_DYNAMIC_MACRO_PLAY_1` * `DYN_MACRO_PLAY2` -> `QK_DYNAMIC_MACRO_PLAY_2` * `DYN_REC_STOP` -> `QK_DYNAMIC_MACRO_RECORD_STOP` * Update docs
This commit is contained in:
parent
3de296f420
commit
fe18df9d41
44 changed files with 216 additions and 210 deletions
|
@ -424,11 +424,11 @@ enum quantum_keycodes {
|
|||
MAGIC_EE_HANDS_RIGHT, // 5D03
|
||||
|
||||
// Dynamic Macros
|
||||
DYN_REC_START1, // 5D04
|
||||
DYN_REC_START2, // 5D05
|
||||
DYN_REC_STOP, // 5D06
|
||||
DYN_MACRO_PLAY1, // 5D07
|
||||
DYN_MACRO_PLAY2, // 5D08
|
||||
QK_DYNAMIC_MACRO_RECORD_START_1, // 5D04
|
||||
QK_DYNAMIC_MACRO_RECORD_START_2, // 5D05
|
||||
QK_DYNAMIC_MACRO_RECORD_STOP, // 5D06
|
||||
QK_DYNAMIC_MACRO_PLAY_1, // 5D07
|
||||
QK_DYNAMIC_MACRO_PLAY_2, // 5D08
|
||||
|
||||
// Joystick
|
||||
QK_JOYSTICK_BUTTON_0, // 5D09
|
||||
|
@ -906,11 +906,11 @@ enum quantum_keycodes {
|
|||
#define MIDI_CHANNEL_MAX MI_CH16
|
||||
|
||||
// Dynamic Macros aliases
|
||||
#define DM_REC1 DYN_REC_START1
|
||||
#define DM_REC2 DYN_REC_START2
|
||||
#define DM_RSTP DYN_REC_STOP
|
||||
#define DM_PLY1 DYN_MACRO_PLAY1
|
||||
#define DM_PLY2 DYN_MACRO_PLAY2
|
||||
#define DM_REC1 QK_DYNAMIC_MACRO_RECORD_START_1
|
||||
#define DM_REC2 QK_DYNAMIC_MACRO_RECORD_START_2
|
||||
#define DM_RSTP QK_DYNAMIC_MACRO_RECORD_STOP
|
||||
#define DM_PLY1 QK_DYNAMIC_MACRO_PLAY_1
|
||||
#define DM_PLY2 QK_DYNAMIC_MACRO_PLAY_2
|
||||
|
||||
// Joystick aliases
|
||||
#define JS_0 QK_JOYSTICK_BUTTON_0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue