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.
51 lines
1.4 KiB
51 lines
1.4 KiB
# |
|
# Marlin Firmware |
|
# PlatformIO Configuration File |
|
# |
|
|
|
################################# |
|
# |
|
# STM32F0 Architecture |
|
# |
|
# Naming Example: STM32F070CBT6 |
|
# |
|
# F : Foundation |
|
# 0 : Cortex M0 core (0:M0, 1-2:M3, 3-4:M4, 7:M7) |
|
# 70 : Line/Features |
|
# C : 48 pins (R:64 or 66, F:20) |
|
# B : 128KB Flash-memory (C:256KB, D:384KB, E:512KB, G:1024KB) |
|
# T : LQFP package |
|
# 6 : -40...85°C (7: ...105°C) |
|
# |
|
################################# |
|
|
|
# |
|
# Malyan M200 v2 (STM32F070RB) |
|
# |
|
[env:STM32F070RB_malyan] |
|
extends = common_stm32 |
|
board = marlin_malyanM200v2 |
|
build_flags = ${common_stm32.build_flags} -DHAL_PCD_MODULE_ENABLED |
|
-O2 -ffreestanding -fsigned-char -fno-move-loop-invariants |
|
-fno-strict-aliasing -DCUSTOM_STARTUP_FILE |
|
|
|
# |
|
# Malyan M200 v2 (STM32F070CB) |
|
# |
|
[env:STM32F070CB_malyan] |
|
extends = common_stm32 |
|
board = malyanm200_f070cb |
|
build_flags = ${common_stm32.build_flags} |
|
-DHAL_PCD_MODULE_ENABLED -DDISABLE_GENERIC_SERIALUSB |
|
-DHAL_UART_MODULE_ENABLED -DCUSTOM_STARTUP_FILE |
|
|
|
# |
|
# Malyan M300 (STM32F070CB) |
|
# |
|
[env:malyan_M300] |
|
extends = common_stm32 |
|
board = malyanm300_f070cb |
|
build_flags = ${common_stm32.build_flags} |
|
-DHAL_PCD_MODULE_ENABLED -DDISABLE_GENERIC_SERIALUSB |
|
-DHAL_UART_MODULE_ENABLED |
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
|
|