diff options
author | Andrew Braini <abraini@nascentdigital.com> | 2021-09-24 12:27:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 09:27:29 -0700 |
commit | 863d9c35feb583356c92aaa04c1b0f234febabc1 (patch) | |
tree | 9611e561262bec8cef8fa554db6aee65ac65d6e7 /keyboards/handwired/battleship_gamepad/rules.mk | |
parent | 257bc473e5483b1411bb5015ccbbaadd08e6ff24 (diff) | |
download | qmk_firmware-863d9c35feb583356c92aaa04c1b0f234febabc1.tar.gz qmk_firmware-863d9c35feb583356c92aaa04c1b0f234febabc1.zip |
[Keyboard] Create the battleship gamepad keyboard. (#14551)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/handwired/battleship_gamepad/rules.mk')
-rw-r--r-- | keyboards/handwired/battleship_gamepad/rules.mk | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboards/handwired/battleship_gamepad/rules.mk b/keyboards/handwired/battleship_gamepad/rules.mk new file mode 100644 index 0000000000..b7a26d8fc5 --- /dev/null +++ b/keyboards/handwired/battleship_gamepad/rules.mk @@ -0,0 +1,25 @@ +# MCU name +MCU = atmega32u4 + +# Bootloader selection +BOOTLOADER = caterina + +SRC += analog.c + +# 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 +# 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 = yes # USB Nkey Rollover +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality +RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow +AUDIO_ENABLE = no # Audio output +JOYSTICK_ENABLE = yes +JOYSTICK_DRIVER = analog |