diff options
author | TheFourthCow <63170386+TheFourthCow@users.noreply.github.com> | 2020-04-27 17:19:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 14:19:06 -0700 |
commit | 4c51049b2baf4e686c257f21849159a7908c7275 (patch) | |
tree | c75765c7e4983c1272297cf1deab2709130450fc /keyboards/funky40/rules.mk | |
parent | dd60fcda2836a79428a5a1b11f2fcfb1b0ce80ea (diff) | |
download | qmk_firmware-4c51049b2baf4e686c257f21849159a7908c7275.tar.gz qmk_firmware-4c51049b2baf4e686c257f21849159a7908c7275.zip |
[Keyboard] Add Funky40 support (#8942)
* Adding all relevant files for the Funky40
This should add all proper files for the funky40 a keyboard I designed for myself, /u/TheFourthcow, a 40% ortholinear with split spacebar.
* Second attempt to add all relevant files for the funky40, includes all reccomended changes from my previous pull request
* Revised most files for Funky40 including reccomenations from my previous pull request
* further modifications made to default funky40 board, compiles on my side with no errors hopefully this one works!
* Update keyboards/funky40/readme.mk.mk
* Update keyboards/funky40/keymaps/default/readme.md.md
* Update keyboards/funky40/keymaps/default/keymap.c
* Update keyboards/funky40/keymaps/default/keymap.c
* Update keyboards/funky40/keymaps/default/keymap.c
* Update keyboards/funky40/config.h
* updating readmes and keymap
* final update to keymap and readmes should function correctly with updates requested
* made changes as requested by noroadsleft to config and readme
Diffstat (limited to 'keyboards/funky40/rules.mk')
-rw-r--r-- | keyboards/funky40/rules.mk | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/keyboards/funky40/rules.mk b/keyboards/funky40/rules.mk new file mode 100644 index 0000000000..c8c2b74e44 --- /dev/null +++ b/keyboards/funky40/rules.mk @@ -0,0 +1,32 @@ +# 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 = caterina + +# Build Options +# change yes to no to disable +# +BOOTMAGIC_ENABLE = yes # 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 - this may disable space cadet right shift/enter +# 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 +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
\ No newline at end of file |