1 #----------------------------------------------------------------------------
4 # make = Make software.
6 # make clean = Clean out built project files.
8 # That's pretty much all you need. To compile, always go make clean,
11 # For advanced users only:
12 # make teensy = Download the hex file to the device, using teensy_loader_cli.
13 # (must have teensy_loader_cli installed).
15 #----------------------------------------------------------------------------
17 # # project specific files
24 # Processor frequency.
25 # This will define a symbol, F_CPU, in all source code files equal to the
26 # processor frequency in Hz. You can then use this symbol in your source code to
27 # calculate timings. Do NOT tack on a 'UL' at the end, this will be done
28 # automatically to create a 32-bit value in your source code.
30 # This will be an integer division of F_USB below, as it is sourced by
31 # F_USB after it has run through any CPU prescalers. Note that this value
32 # does not *change* the processor frequency - it should merely be updated to
33 # reflect the processor speed set externally so that the code can use accurate
41 # Target architecture (see library "Board Types" documentation).
44 # Input clock frequency.
45 # This will define a symbol, F_USB, in all source code files equal to the
46 # input clock frequency (before any prescaling is performed) in Hz. This value may
47 # differ from F_CPU if prescaling is used on the latter, and is required as the
48 # raw input clock is fed directly to the PLL sections of the AVR for high speed
49 # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
50 # at the end, this will be done automatically to create a 32-bit value in your
53 # If no clock division is performed on the input clock inside the AVR (via the
54 # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
57 # Interrupt driven control endpoint task(+60)
58 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
61 # Boot Section Size in *bytes*
63 # Teensy++ halfKay 1024
64 # Atmel DFU loader 4096
65 # LUFA bootloader 4096
67 OPT_DEFS += -DBOOTLOADER_SIZE=512
71 # comment out to disable the options.
73 BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
74 MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
75 EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
76 CONSOLE_ENABLE = yes # Console for debug(+400)
77 COMMAND_ENABLE = yes # Commands for debug and configuration
78 CUSTOM_MATRIX = yes # Custom matrix file (taken and adapted from the ErgoDox EZ to handle custom number of columns)
79 SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
80 NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
81 UNICODE_ENABLE = yes # Unicode
82 BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
83 MIDI_ENABLE = no # MIDI controls
84 UNICODE_ENABLE = no # Unicode
85 BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
86 AUDIO_ENABLE = no # Audio output on port C6
91 # include ../../../Makefile