2021-04-02 02:53:19 +00:00
|
|
|
#
|
|
|
|
# Marlin Firmware
|
|
|
|
# PlatformIO Configuration File
|
|
|
|
#
|
|
|
|
|
|
|
|
#################################
|
2021-04-18 19:07:30 +00:00
|
|
|
#
|
2021-06-02 06:42:15 +00:00
|
|
|
# STM32F1 Architecture with unified STM32 HAL
|
2021-04-18 19:07:30 +00:00
|
|
|
#
|
|
|
|
# Naming Example: STM32F103RCT6
|
|
|
|
#
|
|
|
|
# F : Foundation (sometimes High Performance F2/F4)
|
|
|
|
# 1 : Cortex M1 core
|
|
|
|
# 03 : Line/Features
|
|
|
|
# R : 64 or 66 pins (V:100, Z:144, I:176)
|
|
|
|
# C : 256KB Flash-memory (D:384KB, E:512KB, G:1024KB)
|
|
|
|
# T : LQFP package
|
|
|
|
# 6 : -40...85°C (7: ...105°C)
|
|
|
|
#
|
2021-04-02 02:53:19 +00:00
|
|
|
#################################
|
|
|
|
|
|
|
|
#
|
|
|
|
# HAL/STM32 Base Environment values
|
|
|
|
#
|
|
|
|
[common_stm32]
|
2021-05-02 02:14:58 +00:00
|
|
|
platform = ststm32@~12.1
|
2021-04-02 02:53:19 +00:00
|
|
|
build_flags = ${common.build_flags}
|
|
|
|
-std=gnu++14
|
|
|
|
-DUSBCON -DUSBD_USE_CDC
|
|
|
|
-DTIM_IRQ_PRIO=13
|
|
|
|
-DADC_RESOLUTION=12
|
|
|
|
build_unflags = -std=gnu++11
|
|
|
|
src_filter = ${common.default_src_filter} +<src/HAL/STM32> +<src/HAL/shared/backtrace>
|
2021-06-04 03:38:10 +00:00
|
|
|
extra_scripts = ${common.extra_scripts}
|
|
|
|
pre:buildroot/share/PlatformIO/scripts/stm32_serialbuffer.py
|
2021-04-02 02:53:19 +00:00
|
|
|
|
2021-06-02 06:42:15 +00:00
|
|
|
[common_STM32F103RC]
|
2021-05-11 15:44:54 +00:00
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
board = genericSTM32F103RC
|
|
|
|
monitor_speed = 115200
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Rx
|
2021-06-04 03:38:10 +00:00
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
2021-05-11 15:44:54 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|
|
|
|
|
2021-06-03 07:40:16 +00:00
|
|
|
#
|
|
|
|
# STM32F103RE
|
|
|
|
#
|
|
|
|
[env:STM32F103RE]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
board = genericSTM32F103RE
|
|
|
|
monitor_speed = 115200
|
|
|
|
|
|
|
|
#
|
|
|
|
# STM32F103VE
|
|
|
|
#
|
|
|
|
[env:STM32F103VE]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
board = genericSTM32F103VE
|
|
|
|
monitor_speed = 115200
|
|
|
|
|
|
|
|
#
|
|
|
|
# STM32F103ZE
|
|
|
|
#
|
|
|
|
[env:STM32F103ZE]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
board = genericSTM32F103ZE
|
|
|
|
monitor_speed = 115200
|
|
|
|
|
2021-06-10 21:09:29 +00:00
|
|
|
#
|
|
|
|
# BigTree SKR Mini V1.1 / SKR Mini E3 & MZ (STM32F103RCT6 ARM Cortex-M3)
|
|
|
|
#
|
|
|
|
# STM32F103RC_btt ............. RCT6 with 256K
|
|
|
|
# STM32F103RC_btt_USB ......... RCT6 with 256K (USB mass storage)
|
|
|
|
#
|
2021-06-02 06:42:15 +00:00
|
|
|
[env:STM32F103RC_btt]
|
2021-05-11 15:44:54 +00:00
|
|
|
platform = ${common_stm32.platform}
|
2021-06-02 06:42:15 +00:00
|
|
|
extends = common_STM32F103RC
|
2021-05-11 15:44:54 +00:00
|
|
|
build_flags = ${common_stm32.build_flags} -DDEBUG_LEVEL=0 -DTIMER_SERVO=TIM5
|
|
|
|
board_build.offset = 0x7000
|
|
|
|
board_upload.offset_address = 0x08007000
|
|
|
|
|
2021-06-02 06:42:15 +00:00
|
|
|
[env:STM32F103RC_btt_USB]
|
|
|
|
extends = env:STM32F103RC_btt
|
2021-05-11 15:44:54 +00:00
|
|
|
platform = ${common_stm32.platform}
|
2021-06-14 00:01:53 +00:00
|
|
|
platform_packages = framework-arduinoststm32@https://github.com/rhapsodyv/Arduino_Core_STM32/archive/usb-host-msc-cdc-msc-3.zip
|
2021-05-11 15:44:54 +00:00
|
|
|
build_unflags = ${common_stm32.build_unflags} -DUSBD_USE_CDC
|
2021-06-02 06:42:15 +00:00
|
|
|
build_flags = ${env:STM32F103RC_btt.build_flags} ${env:stm32_flash_drive.build_flags}
|
2021-05-11 15:44:54 +00:00
|
|
|
-DUSBCON
|
2021-06-14 00:01:53 +00:00
|
|
|
-DUSE_USB_FS
|
2021-05-11 15:44:54 +00:00
|
|
|
-DUSBD_IRQ_PRIO=5
|
|
|
|
-DUSBD_IRQ_SUBPRIO=6
|
|
|
|
-DUSBD_USE_CDC_MSC
|
|
|
|
|
2021-04-02 02:53:19 +00:00
|
|
|
#
|
|
|
|
# MKS Robin (STM32F103ZET6)
|
|
|
|
# Uses HAL STM32 to support Marlin UI for TFT screen with optional touch panel
|
|
|
|
#
|
2021-06-02 06:42:15 +00:00
|
|
|
[env:mks_robin]
|
2021-04-02 02:53:19 +00:00
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
board = genericSTM32F103ZE
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Zx
|
|
|
|
board_build.offset = 0x7000
|
2021-06-13 20:43:33 +00:00
|
|
|
board_build.encrypt = Robin.bin
|
2021-04-02 02:53:19 +00:00
|
|
|
build_flags = ${common_stm32.build_flags}
|
|
|
|
-DENABLE_HWSERIAL3 -DTIMER_SERIAL=TIM5
|
|
|
|
build_unflags = ${common_stm32.build_unflags}
|
|
|
|
-DUSBCON -DUSBD_USE_CDC
|
2021-06-04 03:38:10 +00:00
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
2021-04-02 02:53:19 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|
|
|
|
buildroot/share/PlatformIO/scripts/mks_encrypt.py
|
|
|
|
lib_deps =
|
|
|
|
|
2021-06-04 03:38:10 +00:00
|
|
|
#
|
|
|
|
# MKS Robin E3/E3D (STM32F103RCT6) with TMC2209
|
|
|
|
#
|
|
|
|
[env:mks_robin_e3]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_STM32F103RC
|
|
|
|
build_flags = ${common_stm32.build_flags}
|
|
|
|
-DDEBUG_LEVEL=0 -DTIMER_SERVO=TIM5
|
|
|
|
build_unflags = ${common_stm32.build_unflags} -DUSBCON -DUSBD_USE_CDC
|
|
|
|
monitor_speed = 115200
|
|
|
|
board_build.offset = 0x5000
|
2021-06-13 20:43:33 +00:00
|
|
|
board_build.encrypt = Robin_e3.bin
|
2021-06-04 03:38:10 +00:00
|
|
|
board_upload.offset_address = 0x08005000
|
|
|
|
debug_tool = stlink
|
2021-06-17 05:49:42 +00:00
|
|
|
extra_scripts = ${common_STM32F103RC.extra_scripts}
|
2021-06-04 03:38:10 +00:00
|
|
|
buildroot/share/PlatformIO/scripts/mks_encrypt.py
|
|
|
|
|
2021-04-02 02:53:19 +00:00
|
|
|
#
|
|
|
|
# Creality (STM32F103RET6)
|
|
|
|
#
|
|
|
|
[env:STM32F103RET6_creality]
|
2021-06-02 06:42:15 +00:00
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
2021-06-03 08:10:04 +00:00
|
|
|
build_flags = ${common_stm32.build_flags} -DMCU_STM32F103RE -DHAL_SD_MODULE_ENABLED -DSS_TIMER=4 -DTIMER_SERVO=TIM5 -DENABLE_HWSERIAL3 -DTRANSFER_CLOCK_DIV=8
|
2021-06-02 06:42:15 +00:00
|
|
|
board = genericSTM32F103RE
|
|
|
|
monitor_speed = 115200
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Rx
|
|
|
|
board_build.offset = 0x7000
|
|
|
|
board_upload.offset_address = 0x08007000
|
|
|
|
build_unflags = ${common_stm32.build_unflags} -DUSBCON -DUSBD_USE_CDC
|
2021-07-07 00:50:01 +00:00
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
2021-06-02 06:42:15 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
2021-04-02 02:53:19 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/random-bin.py
|
2021-06-02 06:42:15 +00:00
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|
|
|
|
debug_tool = jlink
|
|
|
|
upload_protocol = jlink
|
2021-04-02 02:53:19 +00:00
|
|
|
|
2021-06-05 04:49:00 +00:00
|
|
|
#
|
2021-06-10 21:09:29 +00:00
|
|
|
# BigTree SKR Mini E3 V2.0 & DIP / SKR CR6 (STM32F103RET6 ARM Cortex-M3)
|
2021-06-05 04:49:00 +00:00
|
|
|
#
|
|
|
|
# STM32F103RE_btt ............. RET6
|
|
|
|
# STM32F103RE_btt_USB ......... RET6 (USB mass storage)
|
|
|
|
#
|
|
|
|
[env:STM32F103RE_btt]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
build_flags = ${common_stm32.build_flags} -DMCU_STM32F103RE -DHAL_SD_MODULE_ENABLED -DSS_TIMER=4 -DTIMER_SERVO=TIM5 -DENABLE_HWSERIAL3 -DTRANSFER_CLOCK_DIV=8
|
|
|
|
board = genericSTM32F103RE
|
|
|
|
monitor_speed = 115200
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Rx
|
|
|
|
board_build.offset = 0x7000
|
|
|
|
board_upload.offset_address = 0x08007000
|
|
|
|
build_unflags = ${common_stm32.build_unflags}
|
2021-07-07 00:50:01 +00:00
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
2021-06-05 04:49:00 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|
|
|
|
debug_tool = jlink
|
|
|
|
upload_protocol = jlink
|
|
|
|
|
|
|
|
[env:STM32F103RE_btt_USB]
|
|
|
|
extends = env:STM32F103RE_btt
|
|
|
|
platform = ${common_stm32.platform}
|
2021-06-14 00:01:53 +00:00
|
|
|
platform_packages = framework-arduinoststm32@https://github.com/rhapsodyv/Arduino_Core_STM32/archive/usb-host-msc-cdc-msc-3.zip
|
2021-06-05 04:49:00 +00:00
|
|
|
build_unflags = ${common_stm32.build_unflags} -DUSBD_USE_CDC
|
|
|
|
build_flags = ${env:STM32F103RE_btt.build_flags} ${env:stm32_flash_drive.build_flags}
|
|
|
|
-DUSBCON
|
2021-06-14 00:01:53 +00:00
|
|
|
-DUSE_USB_FS
|
2021-06-05 04:49:00 +00:00
|
|
|
-DUSBD_IRQ_PRIO=5
|
|
|
|
-DUSBD_IRQ_SUBPRIO=6
|
|
|
|
-DUSBD_USE_CDC_MSC
|
|
|
|
|
2021-04-02 02:53:19 +00:00
|
|
|
#
|
2021-06-02 06:42:15 +00:00
|
|
|
# FLSUN QQS Pro (STM32F103VET6)
|
2021-04-02 02:53:19 +00:00
|
|
|
# board Hispeedv1
|
|
|
|
#
|
|
|
|
[env:flsun_hispeedv1]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
build_flags = ${common_stm32.build_flags} -DMCU_STM32F103VE -DSS_TIMER=4 -DENABLE_HWSERIAL3
|
|
|
|
board = genericSTM32F103VE
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Vx
|
|
|
|
board_build.offset = 0x7000
|
2021-06-13 20:43:33 +00:00
|
|
|
board_build.encrypt = Robin_mini.bin
|
2021-04-02 02:53:19 +00:00
|
|
|
board_upload.offset_address = 0x08007000
|
|
|
|
build_unflags = ${common_stm32.build_unflags} -DUSBCON -DUSBD_USE_CDC
|
2021-06-04 03:38:10 +00:00
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
2021-04-02 02:53:19 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|
|
|
|
buildroot/share/PlatformIO/scripts/mks_encrypt.py
|
|
|
|
|
|
|
|
#
|
2021-06-02 06:42:15 +00:00
|
|
|
# MKS Robin Nano V1.2 and V2
|
2021-04-02 02:53:19 +00:00
|
|
|
#
|
2021-06-02 06:42:15 +00:00
|
|
|
[env:mks_robin_nano35]
|
2021-04-02 02:53:19 +00:00
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
build_flags = ${common_stm32.build_flags} -DMCU_STM32F103VE -DSS_TIMER=4 -DENABLE_HWSERIAL3
|
|
|
|
board = genericSTM32F103VE
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Vx
|
|
|
|
board_build.offset = 0x7000
|
2021-06-13 20:43:33 +00:00
|
|
|
board_build.encrypt = Robin_nano35.bin
|
2021-04-02 02:53:19 +00:00
|
|
|
board_upload.offset_address = 0x08007000
|
|
|
|
build_unflags = ${common_stm32.build_unflags} -DUSBCON -DUSBD_USE_CDC
|
|
|
|
debug_tool = jlink
|
|
|
|
upload_protocol = jlink
|
2021-06-04 03:38:10 +00:00
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
2021-04-02 02:53:19 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|
|
|
|
buildroot/share/PlatformIO/scripts/mks_encrypt.py
|
|
|
|
|
|
|
|
#
|
|
|
|
# Mingda MPX_ARM_MINI
|
|
|
|
#
|
|
|
|
[env:mingda_mpx_arm_mini]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
board = genericSTM32F103ZE
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Zx
|
|
|
|
board_build.offset = 0x10000
|
|
|
|
build_flags = ${common_stm32.build_flags} -DENABLE_HWSERIAL3 -DTIMER_SERIAL=TIM5
|
|
|
|
build_unflags = ${common_stm32.build_unflags} -DUSBCON -DUSBD_USE_CDC
|
2021-06-04 03:38:10 +00:00
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
2021-04-02 02:53:19 +00:00
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|
2021-06-06 07:50:14 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Malyan M200 (STM32F103CB)
|
|
|
|
#
|
|
|
|
[env:STM32F103CB_malyan]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
board = malyanm200_f103cb
|
|
|
|
build_flags = ${common_stm32.build_flags}
|
|
|
|
-DHAL_PCD_MODULE_ENABLED -DDISABLE_GENERIC_SERIALUSB -DHAL_UART_MODULE_ENABLED
|
|
|
|
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
2021-07-14 06:57:26 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# FLY Mini (STM32F103RCT6)
|
|
|
|
#
|
|
|
|
[env:FLY_MINI]
|
|
|
|
platform = ${common_stm32.platform}
|
|
|
|
extends = common_stm32
|
|
|
|
build_flags = ${common_stm32.build_flags} -DSS_TIMER=4
|
|
|
|
board = genericSTM32F103RC
|
|
|
|
board_build.core = stm32
|
|
|
|
board_build.variant = MARLIN_F103Rx
|
|
|
|
board_build.offset = 0x5000
|
|
|
|
board_upload.offset_address = 0x08005000
|
|
|
|
extra_scripts = ${common_stm32.extra_scripts}
|
|
|
|
pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
|
|
|
buildroot/share/PlatformIO/scripts/stm32_bootloader.py
|