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 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Target file name (without extension).
  2. PROJECT = ch
  3. # Directory common source files exist
  4. TMK_DIR = ../../tmk_core
  5. # Directory keyboard dependent files exist
  6. TARGET_DIR = .
  7. # project specific files
  8. SRC = matrix.c \
  9. led.c
  10. ifdef KEYMAP
  11. SRC := keymap_$(KEYMAP).c $(SRC)
  12. else
  13. SRC := keymap_plain.c $(SRC)
  14. endif
  15. CONFIG_H = config.h
  16. # GENERIC STM32F103C8T6 board - stm32duino bootloader
  17. OPT_DEFS = -DCORTEX_VTOR_INIT=0x2000
  18. MCU_LDSCRIPT = STM32F103x8_stm32duino_bootloader
  19. BOARD = GENERIC_STM32_F103
  20. # GENERIC STM32F103C8T6 board - no bootloader (programmer over serial or SWD)
  21. # OPT_DEFS =
  22. # MCU_LDSCRIPT = STM32F103x8
  23. # BOARD = GENERIC_STM32_F103
  24. # MAPLE MINI
  25. # OPT_DEFS = -DCORTEX_VTOR_INIT=0x5000
  26. # MCU_LDSCRIPT = STM32F103xB_maplemini_bootloader
  27. # BOARD = MAPLEMINI_STM32_F103
  28. ## chip/board settings
  29. # the next two should match the directories in
  30. # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)
  31. MCU_FAMILY = STM32
  32. MCU_SERIES = STM32F1xx
  33. # linker script to use
  34. # it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
  35. # or <this_dir>/ld/
  36. # startup code to use
  37. # is should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/
  38. MCU_STARTUP = stm32f1xx
  39. # it should exist either in <chibios>/os/hal/boards/
  40. # or <this_dir>/boards
  41. # Cortex version
  42. # Teensy LC is cortex-m0; Teensy 3.x are cortex-m4
  43. MCU = cortex-m3
  44. # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
  45. ARMV = 7
  46. # If you want to be able to jump to bootloader from firmware on STM32 MCUs,
  47. # set the correct BOOTLOADER_ADDRESS. Either set it here, or define it in
  48. # ./bootloader_defs.h or in ./boards/<FOO>/bootloader_defs.h (if you have
  49. # a custom board definition that you plan to reuse).
  50. # If you're not setting it here, leave it commented out.
  51. # It is chip dependent, the correct number can be looked up here (page 175):
  52. # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
  53. # This also requires a patch to chibios:
  54. # <tmk_dir>/tmk_core/tool/chibios/ch-bootloader-jump.patch
  55. #STM32_BOOTLOADER_ADDRESS = 0x1FFFC800
  56. # Build Options
  57. # comment out to disable the options.
  58. #
  59. #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
  60. ## BOOTMAGIC is not supported on STM32 chips yet.
  61. MOUSEKEY_ENABLE = yes # Mouse keys
  62. EXTRAKEY_ENABLE = yes # Audio control and System control
  63. # CONSOLE_ENABLE = yes # Console for debug
  64. COMMAND_ENABLE = yes # Commands for debug and configuration
  65. SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
  66. NKRO_ENABLE = yes # USB Nkey Rollover
  67. include $(TMK_DIR)/tool/chibios/common.mk
  68. include $(TMK_DIR)/tool/chibios/chibios.mk