diff options
author | Christoph Rehmann <1273098+crehmann@users.noreply.github.com> | 2022-01-10 11:33:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 02:33:48 -0800 |
commit | 2e19d0d7d14fef69d583886c244d3c67b3c0cc3d (patch) | |
tree | e21ec0e671f1264e5a2c30ce650894cadc8374d8 /keyboards/buzzard/rules.mk | |
parent | d7eb09949d426af891dd9cf85ad789285422490e (diff) | |
download | qmk_firmware-2e19d0d7d14fef69d583886c244d3c67b3c0cc3d.tar.gz qmk_firmware-2e19d0d7d14fef69d583886c244d3c67b3c0cc3d.zip |
[Keyboard] Add Buzzard support (#15493)
* add buzzerd
(untested, WIP)
* configured linear actuator and fixed keymap
* configuration tweaks and added custom keymap
* add custom tapping term for home row mod
* added readme
* remove ionide folder
* added scroll function to trackpoint
* keymap reworked
* using one shot shift and removed dynamic macros
* reworked default keymap
* adapted to latest qmk changes
* remove caps word from default keymap
* use provided coding guidelines
* use get_highest_layer in favour of biton32
* fixed formatting
* remove unnecessary define statement
Diffstat (limited to 'keyboards/buzzard/rules.mk')
-rw-r--r-- | keyboards/buzzard/rules.mk | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/buzzard/rules.mk b/keyboards/buzzard/rules.mk new file mode 100644 index 0000000000..6450813074 --- /dev/null +++ b/keyboards/buzzard/rules.mk @@ -0,0 +1,22 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +BOOTLOADER = atmel-dfu + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite +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 +NKRO_ENABLE = no # Enable N-Key Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +AUDIO_ENABLE = no # Audio output +SPLIT_KEYBOARD = yes +LTO_ENABLE = yes + +DEFAULT_FOLDER = buzzard/rev1 |