2
0

rules.mk 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #----------------------------------------------------------------------------
  2. # On command line:
  3. #
  4. # make = Make software.
  5. #
  6. # make clean = Clean out built project files.
  7. #
  8. # That's pretty much all you need. To compile, always go make clean,
  9. # followed by make.
  10. #
  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).
  14. #
  15. #----------------------------------------------------------------------------
  16. # # project specific files
  17. SRC = \
  18. twimaster.c \
  19. matrix.c \
  20. expander.c \
  21. # MCU name
  22. MCU = atmega32u4
  23. # Processor frequency.
  24. # This will define a symbol, F_CPU, in all source code files equal to the
  25. # processor frequency in Hz. You can then use this symbol in your source code to
  26. # calculate timings. Do NOT tack on a 'UL' at the end, this will be done
  27. # automatically to create a 32-bit value in your source code.
  28. #
  29. # This will be an integer division of F_USB below, as it is sourced by
  30. # F_USB after it has run through any CPU prescalers. Note that this value
  31. # does not *change* the processor frequency - it should merely be updated to
  32. # reflect the processor speed set externally so that the code can use accurate
  33. # software delays.
  34. F_CPU = 16000000
  35. #
  36. # LUFA specific
  37. #
  38. # Target architecture (see library "Board Types" documentation).
  39. ARCH = AVR8
  40. # Input clock frequency.
  41. # This will define a symbol, F_USB, in all source code files equal to the
  42. # input clock frequency (before any prescaling is performed) in Hz. This value may
  43. # differ from F_CPU if prescaling is used on the latter, and is required as the
  44. # raw input clock is fed directly to the PLL sections of the AVR for high speed
  45. # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
  46. # at the end, this will be done automatically to create a 32-bit value in your
  47. # source code.
  48. #
  49. # If no clock division is performed on the input clock inside the AVR (via the
  50. # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
  51. F_USB = $(F_CPU)
  52. # Interrupt driven control endpoint task(+60)
  53. OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
  54. # Boot Section Size in *bytes*
  55. # Teensy halfKay 512
  56. # Teensy++ halfKay 1024
  57. # Atmel DFU loader 4096
  58. # LUFA bootloader 4096
  59. # USBaspLoader 2048
  60. OPT_DEFS += -DBOOTLOADER_SIZE=4096
  61. # Build Options
  62. # comment out to disable the options.
  63. #
  64. BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
  65. MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
  66. EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
  67. CONSOLE_ENABLE = no # Console for debug(+400)
  68. COMMAND_ENABLE = no # Commands for debug and configuration
  69. SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
  70. NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
  71. USB_6KRO_ENABLE = no # USB 6key Rollover
  72. BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
  73. KEYMAP_IN_EEPROM_ENABLE = no # External keymap in eeprom
  74. KEYMAP_SECTION_ENABLE = no # Fixed address keymap for keymap editor
  75. SOFTPWM_LED_ENABLE = no # Enable SoftPWM to drive backlight
  76. FADING_LED_ENABLE = no # Enable fading backlight
  77. BREATHING_LED_ENABLE = no # Enable breathing backlight
  78. LEDMAP_ENABLE = no # Enable LED mapping
  79. LEDMAP_IN_EEPROM_ENABLE = no # Read LED mapping from eeprom
  80. ONEHAND_ENABLE = no # Disable Onehand
  81. RGBLIGHT_ENABLE = no
  82. MIDI_ENABLE = no