diff options
author | Yan-Fa Li <yanfali@gmail.com> | 2019-08-24 23:44:20 -0700 |
---|---|---|
committer | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2019-08-24 23:44:20 -0700 |
commit | f6da00b85d32f5bc451f5c89e26845434ae62bed (patch) | |
tree | c057e5e4cea14de4b7652feb93c499af89567702 /keyboards/maartenwut/wonderland/rules.mk | |
parent | 43b03099702265ef514cb84236d9031e04047837 (diff) | |
download | qmk_firmware-f6da00b85d32f5bc451f5c89e26845434ae62bed.tar.gz qmk_firmware-f6da00b85d32f5bc451f5c89e26845434ae62bed.zip |
[Keyboard] Maartenwut Wonderland PCB (#6492)
* Initial Commit
* ID
* Use current manu name
* Fix define DEBOUNCE
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Fix NUM Lock LED detection
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Fix CAPs LED detection
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Fix Scroll Lock LED detection
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Use correct convention for setting pins
* Move folder to maartenwut
- enable velocikey
* Fix columns size
* Sync with homerowco
* Add Keebs keymap
* Best practices
* Latest keymap changes from homerowco
Diffstat (limited to 'keyboards/maartenwut/wonderland/rules.mk')
-rwxr-xr-x | keyboards/maartenwut/wonderland/rules.mk | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/keyboards/maartenwut/wonderland/rules.mk b/keyboards/maartenwut/wonderland/rules.mk new file mode 100755 index 0000000000..498076d4ea --- /dev/null +++ b/keyboards/maartenwut/wonderland/rules.mk @@ -0,0 +1,58 @@ +MCU = atmega32u4 + +# Processor frequency. +# This will define a symbol, F_CPU, in all source code files equal to the +# processor frequency in Hz. You can then use this symbol in your source code to +# calculate timings. Do NOT tack on a 'UL' at the end, this will be done +# automatically to create a 32-bit value in your source code. +# +# This will be an integer division of F_USB below, as it is sourced by +# F_USB after it has run through any CPU prescalers. Note that this value +# does not *change* the processor frequency - it should merely be updated to +# reflect the processor speed set externally so that the code can use accurate +# software delays. +F_CPU = 16000000 + + +# +# LUFA specific +# +# Target architecture (see library "Board Types" documentation). +ARCH = AVR8 + +# Input clock frequency. +# This will define a symbol, F_USB, in all source code files equal to the +# input clock frequency (before any prescaling is performed) in Hz. This value may +# differ from F_CPU if prescaling is used on the latter, and is required as the +# raw input clock is fed directly to the PLL sections of the AVR for high speed +# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' +# at the end, this will be done automatically to create a 32-bit value in your +# source code. +# +# If no clock division is performed on the input clock inside the AVR (via the +# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. +F_USB = $(F_CPU) + +# Interrupt driven control endpoint task(+60) +OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT + + +BOOTLOADER = qmk-dfu + +# Build Options +# comment out to disable the options. +# +BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE = no # Mouse keys(+4700) +EXTRAKEY_ENABLE = yes # Audio control and System control(+450) +CONSOLE_ENABLE = yes # Console for debug(+400) +COMMAND_ENABLE = yes # Commands for debug and configuration +NKRO_ENABLE = no # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality (+4870) +BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality (+1150) +MIDI_ENABLE = no # MIDI controls +AUDIO_ENABLE = no +UNICODE_ENABLE = no # Unicode +BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID +AUTO_SHIFT_ENABLE = no +VELOCIKEY_ENABLE = yes |