diff options
author | asdftemp <53125463+asdftemp@users.noreply.github.com> | 2019-10-31 22:17:24 +0100 |
---|---|---|
committer | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2019-10-31 14:17:24 -0700 |
commit | ea8822e26713753e694e51ede6e2a668d52b0173 (patch) | |
tree | bf15ade9f42dd6eb5e4b7d75307dfeb906e48d70 /keyboards/handwired/slash/rules.mk | |
parent | aba90329b2b88c892a81c35761ff4c428003f0f9 (diff) | |
download | qmk_firmware-ea8822e26713753e694e51ede6e2a668d52b0173.tar.gz qmk_firmware-ea8822e26713753e694e51ede6e2a668d52b0173.zip |
[Keyboard] Added slash keyboard (#7042)
* feat(slash): added slash keyboard
* fix(slash): fixed typo in readme
* Improvements after review
* disabled debug and print to reduce firmware size
* Fixes after review
* fixed hardware list in readme.md
Diffstat (limited to 'keyboards/handwired/slash/rules.mk')
-rw-r--r-- | keyboards/handwired/slash/rules.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/handwired/slash/rules.mk b/keyboards/handwired/slash/rules.mk new file mode 100644 index 0000000000..4aba5bdeb9 --- /dev/null +++ b/keyboards/handwired/slash/rules.mk @@ -0,0 +1,30 @@ +# MCU name +MCU = atmega32u4 + +# Processor frequency +F_CPU = 8000000 + +# Bootloader selection +BOOTLOADER = caterina + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration +MOUSEKEY_ENABLE = yes # Mouse keys +EXTRAKEY_ENABLE = yes # Audio control and System control +CONSOLE_ENABLE = no # Console for debug +COMMAND_ENABLE = no # Commands for debug and configuration +# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +NKRO_ENABLE = no # USB Nkey Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +MIDI_ENABLE = no # MIDI support +UNICODE_ENABLE = no # Unicode +#BLUETOOTH_ENABLE = Yes # Enable Bluetooth with the Adafruit EZ-Key HID +BLUETOOTH = AdafruitBLE +AUDIO_ENABLE = no # Audio output on port C6 +FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches +HD44780_ENABLE = no # Enable support for HD44780 based LCDs |