rules.mk 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 = matrix.c \
  18. i2c_master.c \
  19. left.c
  20. # MCU name
  21. MCU = atmega32u4
  22. # Processor frequency.
  23. # This will define a symbol, F_CPU, in all source code files equal to the
  24. # processor frequency in Hz. You can then use this symbol in your source code to
  25. # calculate timings. Do NOT tack on a 'UL' at the end, this will be done
  26. # automatically to create a 32-bit value in your source code.
  27. #
  28. # This will be an integer division of F_USB below, as it is sourced by
  29. # F_USB after it has run through any CPU prescalers. Note that this value
  30. # does not *change* the processor frequency - it should merely be updated to
  31. # reflect the processor speed set externally so that the code can use accurate
  32. # software delays.
  33. F_CPU = 16000000
  34. #
  35. # LUFA specific
  36. #
  37. # Target architecture (see library "Board Types" documentation).
  38. ARCH = AVR8
  39. # Input clock frequency.
  40. # This will define a symbol, F_USB, in all source code files equal to the
  41. # input clock frequency (before any prescaling is performed) in Hz. This value may
  42. # differ from F_CPU if prescaling is used on the latter, and is required as the
  43. # raw input clock is fed directly to the PLL sections of the AVR for high speed
  44. # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
  45. # at the end, this will be done automatically to create a 32-bit value in your
  46. # source code.
  47. #
  48. # If no clock division is performed on the input clock inside the AVR (via the
  49. # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
  50. F_USB = $(F_CPU)
  51. # Interrupt driven control endpoint task(+60)
  52. OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
  53. # Boot Section
  54. BOOTLOADER = atmel-dfu
  55. # Build Options
  56. # comment out to disable the options.
  57. #
  58. CUSTOM_MATRIX = yes # Custom matrix file for the ErgoDone
  59. UNICODE_ENABLE = yes # Unicode
  60. BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
  61. MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
  62. EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
  63. CONSOLE_ENABLE = yes # Console for debug(+400)
  64. COMMAND_ENABLE = no # Commands for debug and configuration
  65. SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
  66. NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
  67. USB_6KRO_ENABLE = no # USB 6key Rollover
  68. BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
  69. KEYMAP_SECTION_ENABLE = no # Fixed address keymap for keymap editor
  70. SWAP_HANDS_ENABLE = no # Disable Onehand
  71. RGBLIGHT_ENABLE = no
  72. MIDI_ENABLE = no
  73. LAYOUTS = ergodox