rules.mk 2.0 KB

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