🔨 Fix OpenBLT encode; no-bootloader envs (#24446)
This commit is contained in:
committed by
Scott Lahteine
parent
e4f85e8fbc
commit
8f40a2f257
@ -106,24 +106,34 @@ extra_scripts = ${stm32_variant.extra_scripts}
|
||||
|
||||
#
|
||||
# Anet ET4-MB_V1.x/ET4P-MB_V1.x (STM32F407VGT6 ARM Cortex-M4)
|
||||
# For use with with davidtgbe's OpenBLT bootloader https://github.com/davidtgbe/openblt/releases
|
||||
# Comment out board_build.offset = 0x10000 if you don't plan to use OpenBLT/flashing directly to 0x08000000.
|
||||
#
|
||||
[env:Anet_ET4_OpenBLT]
|
||||
[Anet_ET4]
|
||||
extends = stm32_variant
|
||||
board = marlin_STM32F407VGT6_CCM
|
||||
board_build.variant = MARLIN_F4x7Vx
|
||||
board_build.encrypt_mks = firmware.srec
|
||||
board_build.offset = 0x10000
|
||||
board_upload.offset_address = 0x08010000
|
||||
build_flags = ${stm32_variant.build_flags}
|
||||
-DHAL_SD_MODULE_ENABLED -DHAL_SRAM_MODULE_ENABLED
|
||||
build_unflags = ${stm32_variant.build_unflags}
|
||||
-DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483
|
||||
|
||||
#
|
||||
# Anet ET4 directly flashed via ST-Link
|
||||
#
|
||||
[env:Anet_ET4_no_bootloader]
|
||||
extends = Anet_ET4
|
||||
debug_tool = stlink
|
||||
upload_protocol = stlink
|
||||
|
||||
#
|
||||
# Anet ET4 with OpenBLT from https://github.com/davidtgbe/openblt/releases
|
||||
#
|
||||
[env:Anet_ET4_OpenBLT]
|
||||
extends = Anet_ET4
|
||||
board_build.encode = firmware.srec
|
||||
board_build.offset = 0x10000
|
||||
board_upload.offset_address = 0x08010000
|
||||
extra_scripts = ${stm32_variant.extra_scripts}
|
||||
buildroot/share/PlatformIO/scripts/openblt.py
|
||||
debug_tool = jlink
|
||||
upload_protocol = jlink
|
||||
|
||||
#
|
||||
# BigTreeTech SKR Pro (STM32F407ZGT6 ARM Cortex-M4)
|
||||
@ -546,16 +556,28 @@ build_unflags = -DUSBD_USE_CDC
|
||||
#
|
||||
# TH3D EZBoard v2.0 (STM32F405RGT6 ARM Cortex-M4)
|
||||
#
|
||||
[env:TH3D_EZBoard_V2]
|
||||
[TH3D_EZBoard_V2]
|
||||
extends = stm32_variant
|
||||
board = genericSTM32F405RG
|
||||
board_build.variant = MARLIN_TH3D_EZBOARD_V2
|
||||
board_build.encrypt_mks = firmware.bin
|
||||
board_build.offset = 0xC000
|
||||
board_upload.offset_address = 0x0800C000
|
||||
build_flags = ${stm32_variant.build_flags} -DHSE_VALUE=12000000U -O0
|
||||
|
||||
#
|
||||
# TH3D EZBoard v2.0 directly flashed via ST-Link
|
||||
#
|
||||
[env:TH3D_EZBoard_V2_no_bootloader]
|
||||
extends = TH3D_EZBoard_V2
|
||||
debug_tool = stlink
|
||||
upload_protocol = stlink
|
||||
|
||||
#
|
||||
# TH3D EZBoard v2.0 with OpenBLT from https://github.com/rhapsodyv/OpenBLT-STM32
|
||||
#
|
||||
[env:TH3D_EZBoard_V2_OpenBLT]
|
||||
extends = TH3D_EZBoard_V2
|
||||
board_build.encode = firmware.bin
|
||||
board_build.offset = 0xC000
|
||||
board_upload.offset_address = 0x0800C000
|
||||
extra_scripts = ${stm32_variant.extra_scripts}
|
||||
buildroot/share/PlatformIO/scripts/openblt.py
|
||||
|
||||
|
Reference in New Issue
Block a user