diff options
Diffstat (limited to 'keyboards/planck/rev6/rules.mk')
| -rw-r--r-- | keyboards/planck/rev6/rules.mk | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/keyboards/planck/rev6/rules.mk b/keyboards/planck/rev6/rules.mk new file mode 100644 index 000000000..3603e287b --- /dev/null +++ b/keyboards/planck/rev6/rules.mk | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | # project specific files | ||
| 2 | SRC = matrix.c | ||
| 3 | LAYOUTS += ortho_4x12 | ||
| 4 | |||
| 5 | ## chip/board settings | ||
| 6 | # - the next two should match the directories in | ||
| 7 | # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES) | ||
| 8 | MCU_FAMILY = STM32 | ||
| 9 | MCU_SERIES = STM32F3xx | ||
| 10 | |||
| 11 | # Linker script to use | ||
| 12 | # - it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/ | ||
| 13 | # or <this_dir>/ld/ | ||
| 14 | MCU_LDSCRIPT = STM32F303xC | ||
| 15 | |||
| 16 | # Startup code to use | ||
| 17 | # - it should exist in <chibios>/os/common/startup/ARMCMx/compilers/GCC/mk/ | ||
| 18 | MCU_STARTUP = stm32f3xx | ||
| 19 | |||
| 20 | # Board: it should exist either in <chibios>/os/hal/boards/ | ||
| 21 | # or <this_dir>/boards | ||
| 22 | BOARD = GENERIC_STM32_F303XC | ||
| 23 | |||
| 24 | # Cortex version | ||
| 25 | MCU = cortex-m4 | ||
| 26 | |||
| 27 | # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7 | ||
| 28 | ARMV = 7 | ||
| 29 | |||
| 30 | USE_FPU = yes | ||
| 31 | |||
| 32 | # Vector table for application | ||
| 33 | # 0x00000000-0x00001000 area is occupied by bootlaoder.*/ | ||
| 34 | # The CORTEX_VTOR... is needed only for MCHCK/Infinity KB | ||
| 35 | # OPT_DEFS = -DCORTEX_VTOR_INIT=0x08005000 | ||
| 36 | OPT_DEFS = | ||
| 37 | |||
| 38 | # Options to pass to dfu-util when flashing | ||
| 39 | DFU_ARGS = -d 0483:df11 -a 0 -s 0x08000000:leave | ||
| 40 | |||
| 41 | # Build Options | ||
| 42 | # comment out to disable the options. | ||
| 43 | # | ||
| 44 | BACKLIGHT_ENABLE = no | ||
| 45 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | ||
| 46 | ## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.) | ||
| 47 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 48 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 49 | CONSOLE_ENABLE = yes # Console for debug | ||
| 50 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 51 | #SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | ||
| 52 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 53 | CUSTOM_MATRIX = yes # Custom matrix file | ||
| 54 | AUDIO_ENABLE = yes | ||
| 55 | RGBLIGHT_ENABLE = no | ||
| 56 | # SERIAL_LINK_ENABLE = yes | ||
