Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # Target file name (without extension).
  2. TARGET = terminal_bluefruit
  3. # Directory common source filess exist
  4. TMK_DIR = ../../tmk_core
  5. # Directory keyboard dependent files exist
  6. TARGET_DIR = .
  7. # keyboard dependent files
  8. SRC = keymap.c \
  9. matrix.c \
  10. led.c
  11. CONFIG_H = config.h
  12. BLUEFRUIT_TRACE_SERIAL=true
  13. # MCU name, you MUST set this to match the board you are using
  14. # type "make clean" after changing this, so all files will be rebuilt
  15. #MCU = at90usb162 # Teensy 1.0
  16. MCU = atmega32u4 # Teensy 2.0
  17. #MCU = at90usb646 # Teensy++ 1.0
  18. #MCU = at90usb1286 # Teensy++ 2.0
  19. # Processor frequency.
  20. # Normally the first thing your program should do is set the clock prescaler,
  21. # so your program will run at the correct speed. You should also set this
  22. # variable to same clock speed. The _delay_ms() macro uses this, and many
  23. # examples use this variable to calculate timings. Do not add a "UL" here.
  24. F_CPU = 16000000
  25. #
  26. # LUFA specific
  27. #
  28. # Target architecture (see library "Board Types" documentation).
  29. ARCH = AVR8
  30. # Input clock frequency.
  31. # This will define a symbol, F_USB, in all source code files equal to the
  32. # input clock frequency (before any prescaling is performed) in Hz. This value may
  33. # differ from F_CPU if prescaling is used on the latter, and is required as the
  34. # raw input clock is fed directly to the PLL sections of the AVR for high speed
  35. # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
  36. # at the end, this will be done automatically to create a 32-bit value in your
  37. # source code.
  38. #
  39. # If no clock division is performed on the input clock inside the AVR (via the
  40. # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
  41. F_USB = $(F_CPU)
  42. # Interrupt driven control endpoint task
  43. OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
  44. # Boot Section Size in bytes
  45. # Teensy halfKay 512
  46. # Atmel DFU loader 4096
  47. # LUFA bootloader 4096
  48. OPT_DEFS += -DBOOTLOADER_SIZE=4096
  49. # Build Options
  50. # comment out to disable the options.
  51. #
  52. BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
  53. MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
  54. EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
  55. CONSOLE_ENABLE = yes # Console for debug(+400)
  56. COMMAND_ENABLE = yes # Commands for debug and configuration
  57. #SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
  58. #NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA
  59. #
  60. # PS/2 protocol implementations
  61. # USART is recommended if it is available, others are for reference purpose.
  62. # INT implementation will drop simultaneous key strokes.
  63. #
  64. #PS2_USE_USART = yes # uses hardware USART engine for PS/2 signal receive(recomened)
  65. PS2_USE_INT = yes # uses external interrupt for falling edge of PS/2 clock pin
  66. #PS2_USE_BUSYWAIT = yes # uses primitive reference code
  67. #---------------- Programming Options --------------------------
  68. PROGRAM_CMD = teensy_loader_cli -mmcu=$(MCU) -w -v $(TARGET).hex
  69. # Search Path
  70. VPATH += $(TARGET_DIR)
  71. VPATH += $(TMK_DIR)
  72. include $(TMK_DIR)/protocol.mk
  73. include $(TMK_DIR)/protocol/bluefruit.mk
  74. include $(TMK_DIR)/protocol.mk
  75. include $(TMK_DIR)/common.mk
  76. include $(TMK_DIR)/rules.mk