rules.mk 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # project specific files
  2. SRC = led.c \
  3. underglow.c \
  4. hsv2rgb.c
  5. # GENERIC STM32F103C8T6 board - stm32duino bootloader
  6. OPT_DEFS = -DCORTEX_VTOR_INIT=0x2000
  7. MCU_LDSCRIPT = STM32F103x8_stm32duino_bootloader
  8. BOARD = GENERIC_STM32_F103
  9. # OPT_DEFS =
  10. # MCU_LDSCRIPT = STM32F103x8
  11. # BOARD = GENERIC_STM32_F103
  12. ## chip/board settings
  13. # the next two should match the directories in
  14. # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)
  15. MCU_FAMILY = STM32
  16. MCU_SERIES = STM32F1xx
  17. # linker script to use
  18. # it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
  19. # or <this_dir>/ld/
  20. # startup code to use
  21. # is should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/
  22. MCU_STARTUP = stm32f1xx
  23. # it should exist either in <chibios>/os/hal/boards/
  24. # or <this_dir>/boards
  25. # Cortex version
  26. # Teensy LC is cortex-m0; Teensy 3.x are cortex-m4
  27. MCU = cortex-m3
  28. # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
  29. ARMV = 7
  30. # If you want to be able to jump to bootloader from firmware on STM32 MCUs,
  31. # set the correct BOOTLOADER_ADDRESS. Either set it here, or define it in
  32. # ./bootloader_defs.h or in ./boards/<FOO>/bootloader_defs.h (if you have
  33. # a custom board definition that you plan to reuse).
  34. # If you're not setting it here, leave it commented out.
  35. # It is chip dependent, the correct number can be looked up here (page 175):
  36. # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
  37. # This also requires a patch to chibios:
  38. # <tmk_dir>/tmk_core/tool/chibios/ch-bootloader-jump.patch
  39. #STM32_BOOTLOADER_ADDRESS = 0x1FFFC800
  40. #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
  41. MOUSEKEY_ENABLE = yes # Mouse keys
  42. EXTRAKEY_ENABLE = yes # Audio control and System control
  43. CONSOLE_ENABLE = yes # Console for debug
  44. COMMAND_ENABLE = yes # Commands for debug and configuration
  45. SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
  46. NKRO_ENABLE = yes # USB Nkey Rollover
  47. BACKLIGHT_ENABLE = yes
  48. LAYOUTS = 60_ansi
  49. DEFAULT_FOLDER = handwired/practice60