diff options
author | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2020-01-11 23:11:06 -0800 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-01-11 23:11:06 -0800 |
commit | b6917c782fab724c181576164a7512089e54e36e (patch) | |
tree | 19022b7b819b9e3ead1d472770292b3dfcd66bde /keyboards/bm60rgb/rules.mk | |
parent | 08cd99683999eb8fa009116a80255c185fdb9a4b (diff) | |
download | qmk_firmware-b6917c782fab724c181576164a7512089e54e36e.tar.gz |
[Keyboard] KPRepublic BM60 RGB (#7842)
* initial commit from script
* edit all generated files with my name and some basic notes
* implement RGB Matrix support
* cleanups, file removals, and readme edits
* Update keyboards/bm60hsrgb/config.h
* rename to bm60rgb
* update included library and info.json keyboard name
* Update keyboards/bm60rgb/keymaps/default/readme.md
Diffstat (limited to 'keyboards/bm60rgb/rules.mk')
-rw-r--r-- | keyboards/bm60rgb/rules.mk | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/keyboards/bm60rgb/rules.mk b/keyboards/bm60rgb/rules.mk new file mode 100644 index 000000000..4372a6306 --- /dev/null +++ b/keyboards/bm60rgb/rules.mk @@ -0,0 +1,38 @@ +# 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 + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = lite # 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 = 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 +RGB_MATRIX_ENABLE = WS2812 +LINK_TIME_OPTIMIZATION_ENABLE = yes + +# partially generated by KBFirmware JSON to QMK Parser +# https://noroadsleft.github.io/kbf_qmk_converter/ |