forked from forks/qmk_firmware
2410f02359
* Adding my personal planck keymap * Adding readme.md to my keymap * Create my userspace add users/ishtob/ * Moved macros off keymap macros now exsists in my userspace, moved them off keyboard specific keymaps * Create my userspace add users/ishtob/ * rebase from main QMK repo * fixed compile error with planck rev6 keymap * fixed compile error with planck rev6 keymap * Revert "Merge branch 'master' of https://github.com/ishtob/qmk_firmware" This reverts commit6c8a9a6eec
, reversing changes made to5c598d9a53
. * fixed issue where compile errors if private macro file is not present * Revert "fixed issue where compile errors if private macro file is not present" This reverts commite0035df48f
. * Fixed STM32 timer issue with Planck Rev6 with tap mods * Revert "fixed compile error with planck rev6 keymap" This reverts commit5c598d9a53
. * Revert "Revert "fixed compile error with planck rev6 keymap"" This reverts commitc36896ca71
. * Fixed compile issues with my personal userspace and keymap utilizing the userspace
23 lines
828 B
Makefile
Executable file
23 lines
828 B
Makefile
Executable file
# Build Options
|
|
# comment out to disable the options.
|
|
#
|
|
BACKLIGHT_ENABLE = no
|
|
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
|
|
## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
CONSOLE_ENABLE = yes # Console for debug
|
|
COMMAND_ENABLE = yes # Commands for debug and configuration
|
|
#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
|
|
NKRO_ENABLE = yes # USB Nkey Rollover
|
|
CUSTOM_MATRIX = yes # Custom matrix file
|
|
AUDIO_ENABLE = yes
|
|
ENCODER_ENABLE = yes
|
|
# SERIAL_LINK_ENABLE = yes
|
|
|
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
|
|
|
ifndef QUANTUM_DIR
|
|
include ../../../../Makefile
|
|
endif |