turn on all keycodes but unicode

keycode_versioning
Jack Humbert 6 years ago
parent 4cb7907547
commit 6a4ff6c0c7

@ -1,25 +0,0 @@
/* Copyright 2017 Jack Humbert
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PROCESS_TERMINAL_H
#define PROCESS_TERMINAL_H
#include "quantum.h"
#define TERM_ON KC_NO
#define TERM_OFF KC_NO
#endif

@ -108,8 +108,6 @@ extern uint32_t default_layer_state;
#ifdef TERMINAL_ENABLE #ifdef TERMINAL_ENABLE
#include "process_terminal.h" #include "process_terminal.h"
#else
#include "process_terminal_nop.h"
#endif #endif
#define STRINGIZE(z) #z #define STRINGIZE(z) #z

@ -63,26 +63,23 @@ enum quantum_keycodes {
QK_ONE_SHOT_LAYER_MAX = 0x54FF, QK_ONE_SHOT_LAYER_MAX = 0x54FF,
QK_ONE_SHOT_MOD = 0x5500, QK_ONE_SHOT_MOD = 0x5500,
QK_ONE_SHOT_MOD_MAX = 0x55FF, QK_ONE_SHOT_MOD_MAX = 0x55FF,
#ifndef DISABLE_CHORDING // affected by DISABLE_CHORDING
QK_CHORDING = 0x5600, QK_CHORDING = 0x5600,
QK_CHORDING_MAX = 0x56FF, QK_CHORDING_MAX = 0x56FF,
#endif
QK_TAP_DANCE = 0x5700, QK_TAP_DANCE = 0x5700,
QK_TAP_DANCE_MAX = 0x57FF, QK_TAP_DANCE_MAX = 0x57FF,
QK_LAYER_TAP_TOGGLE = 0x5800, QK_LAYER_TAP_TOGGLE = 0x5800,
QK_LAYER_TAP_TOGGLE_MAX = 0x58FF, QK_LAYER_TAP_TOGGLE_MAX = 0x58FF,
QK_LAYER_MOD = 0x5900, QK_LAYER_MOD = 0x5900,
QK_LAYER_MOD_MAX = 0x59FF, QK_LAYER_MOD_MAX = 0x59FF,
#ifdef STENO_ENABLE // affected by STENO_ENABLE
QK_STENO = 0x5A00, QK_STENO = 0x5A00,
QK_STENO_BOLT = 0x5A30, QK_STENO_BOLT = 0x5A30,
QK_STENO_GEMINI = 0x5A31, QK_STENO_GEMINI = 0x5A31,
QK_STENO_MAX = 0x5A3F, QK_STENO_MAX = 0x5A3F,
#endif // affected by SWAP_HANDS_ENABLE
#ifdef SWAP_HANDS_ENABLE
QK_SWAP_HANDS = 0x5B00, QK_SWAP_HANDS = 0x5B00,
QK_SWAP_HANDS_MAX = 0x5BFF, QK_SWAP_HANDS_MAX = 0x5BFF,
#endif
QK_MOD_TAP = 0x6000, QK_MOD_TAP = 0x6000,
QK_MOD_TAP_MAX = 0x7FFF, QK_MOD_TAP_MAX = 0x7FFF,
#if defined(UNICODEMAP_ENABLE) && defined(UNICODE_ENABLE) #if defined(UNICODEMAP_ENABLE) && defined(UNICODE_ENABLE)
@ -123,9 +120,8 @@ enum quantum_keycodes {
GRAVE_ESC, GRAVE_ESC,
// Leader key // Leader key
#ifndef DISABLE_LEADER // affected by DISABLE_LEADER
KC_LEAD, KC_LEAD,
#endif
// Auto Shift setup // Auto Shift setup
KC_ASUP, KC_ASUP,
@ -140,12 +136,11 @@ enum quantum_keycodes {
AU_OFF, AU_OFF,
AU_TOG, AU_TOG,
#ifdef FAUXCLICKY_ENABLE
// Faux clicky // Faux clicky
// affected by FAUXCLICKY_ENABLE
FC_ON, FC_ON,
FC_OFF, FC_OFF,
FC_TOG, FC_TOG,
#endif
// Music mode on/off/toggle // Music mode on/off/toggle
MU_ON, MU_ON,
@ -160,16 +155,15 @@ enum quantum_keycodes {
MUV_DE, MUV_DE,
// Midi // Midi
#if !MIDI_ENABLE_STRICT || (defined(MIDI_ENABLE) && defined(MIDI_BASIC)) // affected by !MIDI_ENABLE_STRICT || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))
MI_ON, MI_ON,
MI_OFF, MI_OFF,
MI_TOG, MI_TOG,
#endif
#if !MIDI_ENABLE_STRICT || (defined(MIDI_ENABLE) && defined(MIDI_ADVANCED)) // affected by !MIDI_ENABLE_STRICT || (defined(MIDI_ENABLE) && defined(MIDI_ADVANCED))
MIDI_TONE_MIN, MIDI_TONE_MIN,
#if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 0 // affected by !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 0
MI_C = MIDI_TONE_MIN, MI_C = MIDI_TONE_MIN,
MI_Cs, MI_Cs,
MI_Db = MI_Cs, MI_Db = MI_Cs,
@ -187,9 +181,8 @@ enum quantum_keycodes {
MI_As, MI_As,
MI_Bb = MI_As, MI_Bb = MI_As,
MI_B, MI_B,
#endif
#if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 1 // affected by !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 1
MI_C_1, MI_C_1,
MI_Cs_1, MI_Cs_1,
MI_Db_1 = MI_Cs_1, MI_Db_1 = MI_Cs_1,
@ -207,9 +200,8 @@ enum quantum_keycodes {
MI_As_1, MI_As_1,
MI_Bb_1 = MI_As_1, MI_Bb_1 = MI_As_1,
MI_B_1, MI_B_1,
#endif
#if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 2 // affected by !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 2
MI_C_2, MI_C_2,
MI_Cs_2, MI_Cs_2,
MI_Db_2 = MI_Cs_2, MI_Db_2 = MI_Cs_2,
@ -227,9 +219,8 @@ enum quantum_keycodes {
MI_As_2, MI_As_2,
MI_Bb_2 = MI_As_2, MI_Bb_2 = MI_As_2,
MI_B_2, MI_B_2,
#endif
#if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 3 // affected by !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 3
MI_C_3, MI_C_3,
MI_Cs_3, MI_Cs_3,
MI_Db_3 = MI_Cs_3, MI_Db_3 = MI_Cs_3,
@ -247,9 +238,8 @@ enum quantum_keycodes {
MI_As_3, MI_As_3,
MI_Bb_3 = MI_As_3, MI_Bb_3 = MI_As_3,
MI_B_3, MI_B_3,
#endif
#if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 4 // affected by !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 4
MI_C_4, MI_C_4,
MI_Cs_4, MI_Cs_4,
MI_Db_4 = MI_Cs_4, MI_Db_4 = MI_Cs_4,
@ -267,9 +257,8 @@ enum quantum_keycodes {
MI_As_4, MI_As_4,
MI_Bb_4 = MI_As_4, MI_Bb_4 = MI_As_4,
MI_B_4, MI_B_4,
#endif
#if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 5 // affected by !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 5
MI_C_5, MI_C_5,
MI_Cs_5, MI_Cs_5,
MI_Db_5 = MI_Cs_5, MI_Db_5 = MI_Cs_5,
@ -287,21 +276,20 @@ enum quantum_keycodes {
MI_As_5, MI_As_5,
MI_Bb_5 = MI_As_5, MI_Bb_5 = MI_As_5,
MI_B_5, MI_B_5,
#endif
#if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 5 #if !MIDI_ENABLE_STRICT || MIDI_TONE_KEYCODE_OCTAVES > 5
MIDI_TONE_MAX = MI_B_5, MIDI_TONE_MAX = MI_B_5,
#elif MIDI_TONE_KEYCODE_OCTAVES > 4 #elif MIDI_TONE_KEYCODE_OCTAVES > 4
MIDI_TONE_MAX = MI_B_4, MIDI_TONE_MAX = MI_B_4,
#elif MIDI_TONE_KEYCODE_OCTAVES > 3 #elif MIDI_TONE_KEYCODE_OCTAVES > 3
MIDI_TONE_MAX = MI_B_3, MIDI_TONE_MAX = MI_B_3,
#elif MIDI_TONE_KEYCODE_OCTAVES > 2 #elif MIDI_TONE_KEYCODE_OCTAVES > 2
MIDI_TONE_MAX = MI_B_2, MIDI_TONE_MAX = MI_B_2,
#elif MIDI_TONE_KEYCODE_OCTAVES > 1 #elif MIDI_TONE_KEYCODE_OCTAVES > 1
MIDI_TONE_MAX = MI_B_1, MIDI_TONE_MAX = MI_B_1,
#elif MIDI_TONE_KEYCODE_OCTAVES > 0 #elif MIDI_TONE_KEYCODE_OCTAVES > 0
MIDI_TONE_MAX = MI_B, MIDI_TONE_MAX = MI_B,
#endif #endif
MIDI_OCTAVE_MIN, MIDI_OCTAVE_MIN,
MI_OCT_N2 = MIDI_OCTAVE_MIN, MI_OCT_N2 = MIDI_OCTAVE_MIN,
@ -383,7 +371,7 @@ enum quantum_keycodes {
MI_MOD, // modulation MI_MOD, // modulation
MI_MODSD, // decrease modulation speed MI_MODSD, // decrease modulation speed
MI_MODSU, // increase modulation speed MI_MODSU, // increase modulation speed
#endif // MIDI_ADVANCED
// Backlight functionality // Backlight functionality
BL_ON, BL_ON,
@ -429,18 +417,15 @@ enum quantum_keycodes {
// output selection // output selection
OUT_AUTO, OUT_AUTO,
OUT_USB, OUT_USB,
#ifdef BLUETOOTH_ENABLE // affected by BLUETOOTH_ENABLE
OUT_BT, OUT_BT,
#endif
#ifdef KEY_LOCK_ENABLE // affected by KEY_LOCK_ENABLE
KC_LOCK, KC_LOCK,
#endif
#ifdef TERMINAL_ENABLE // affected by TERMINAL_ENABLE
TERM_ON, TERM_ON,
TERM_OFF, TERM_OFF,
#endif
// always leave at the end // always leave at the end
SAFE_RANGE SAFE_RANGE

Loading…
Cancel
Save