You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
958 B

[Keymap] Update to userspace kuchosauroand0 (#6596) * added combos * minor adjustments, added combos * Add second encoder, add modifiers to encoders Added a skeleton for the possibily having a second encoder. Added 9 modifiers for the first rotary encoder: - None General navigation. Page up/down - SHIFT Fast navigation. Home/end - CTRL Vertical navigation. Up/down - CTRL+SHIFT Horizontal navigation. Left/right - ALT Audio volume control. - GUI Browser navigation(windows). Forward/backward - ALT+SHIFT Form navigation. Tab up/down - ALT+CTRL Media control. (Play|pause)/mute - HYPER Media navigation. Next/prev track Key codes are stored in `uint16_t encoder_actions[2][9]` * Add second encoder, add modifiers to encoders Added a skeleton for the possibily having a second encoder. Added 9 modifiers for the first rotary encoder: - None General navigation. Page up/down - SHIFT Fast navigation. Home/end - CTRL Vertical navigation. Up/down - CTRL+SHIFT Horizontal navigation. Left/right - ALT Audio volume control. - GUI Browser navigation(windows). Forward/backward - ALT+SHIFT Form navigation. Tab up/down - ALT+CTRL Media control. (Play|pause)/mute - HYPER Media navigation. Next/prev track Key codes are stored in `uint16_t encoder_actions[2][9]` * Clean up; added combos Combos: - CV: Copy - XC: Cut - ZV: Paste - QP: KC_SLEEP * Fix LEADER_DICTIONARY to be more useful * Add documentation * Minor fixes * Raise TAPPING_TERM * testing * Rearrange modifiers * Fix kc being stored in uint8 instead of uint16 * Update documentation * Clean up * Remove excess comments * Put encoder_actions in progmem
4 years ago
  1. SRC += kuchosauronad0.c \
  2. process_records.c
  3. LTO_ENABLE = yes
  4. SPACE_CADET_ENABLE = no
  5. ifneq ($(strip $(RGBLIGHT_ENABLE)),yes )
  6. SRC += rgblight_user.c
  7. endif
  8. ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
  9. SRC += tap_dances.c
  10. endif
  11. ifeq ($(strip $(ENCODER_ENABLE)), yes)
  12. SRC += encoder.c
  13. endif
  14. ifeq ($(strip $(COMBO_ENABLE)), yes)
  15. SRC += combo.c
  16. endif
  17. ifeq ($(strip $(LEADER_ENABLE)), yes)
  18. SRC += leader_user.c
  19. endif
  20. ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
  21. SRC += secrets.c
  22. endif
  23. ifeq ($(strip $(NO_SECRETS)), yes)
  24. OPT_DEFS += -DNO_SECRETS
  25. endif
  26. ifeq ($(strip $(UNICODEMAP_ENABLE)), yes)
  27. SRC += unicode.c
  28. endif
  29. ifeq ($(strip $(MACROS_ENABLED)), yes)
  30. OPT_DEFS += -DMACROS_ENABLED
  31. endif
  32. ifdef CONSOLE_ENABLE
  33. ifeq ($(strip $(KEYLOGGER_ENABLE)), yes)
  34. OPT_DEFS += -DKEYLOGGER_ENABLE
  35. endif
  36. endif
  37. ifeq ($(strip $(MAKE_BOOTLOADER)), yes)
  38. OPT_DEFS += -DMAKE_BOOTLOADER
  39. endif