diff options
author | Cody Bender <50554676+cfbender@users.noreply.github.com> | 2020-04-18 18:40:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 17:40:13 -0700 |
commit | 7e1c0bd4c093b6a4ff637dc29faef6cfbcbedefe (patch) | |
tree | fde57dff2daa7f1ab93dc0aa22eeece016d068e3 /keyboards/absinthe/rules.mk | |
parent | d2b8398f75f8239b135bfb3772153e32d794c291 (diff) |
[Keyboard] Add Absinthe keyboard (#8769)
* Initial absinthe setup
* Update Absinthe files
* Add absinthe ANSI layout
* Update absinthe keymaps
* Update Absinthe for rev3
* Flip encoder pins
* Fix rules.mk
* Update absinthe files
* Fix absinthe ansi config
* Add RGB
* Change rules for absinthe for firmware size
* Fix pins for rev4
* Fix pins and GESC
* Remove GESC from ANSI layout
* Rebase upstream/master
* Update formatting and convention from 8769 feedback
* Format rules.mk
Diffstat (limited to 'keyboards/absinthe/rules.mk')
-rw-r--r-- | keyboards/absinthe/rules.mk | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/keyboards/absinthe/rules.mk b/keyboards/absinthe/rules.mk new file mode 100644 index 0000000000..f0b8037c91 --- /dev/null +++ b/keyboards/absinthe/rules.mk @@ -0,0 +1,45 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +# Teensy halfkay +# Pro Micro caterina +# Atmel DFU atmel-dfu +# LUFA DFU lufa-dfu +# QMK DFU qmk-dfu +# ATmega32A bootloadHID +# ATmega328P USBasp +BOOTLOADER = atmel-dfu + +# If you don't know the bootloader type, then you can specify the +# Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line +# Otherwise, delete this section +# Teensy halfKay 512 +# Teensy++ halfKay 1024 +# Atmel DFU loader 4096 +# LUFA bootloader 4096 +# USBaspLoader 2048 +# OPT_DEFS += -DBOOTLOADER_SIZE=4096 + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration +MOUSEKEY_ENABLE = no # 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 +BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID +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 +ENCODER_ENABLE = yes +RGBLIGHT_ENABLE = yes +# EXTRAFLAGS += -flto |