forked from MarlinFirmware/Marlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: Martin Turski <[email protected]>
- Loading branch information
1 parent
f452df0
commit 51b33cc
Showing
5 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,7 +61,7 @@ monitor_speed = 115200 | |
[env:STM32F103RC_meeb_maple] | ||
extends = env:STM32F103RC_maple | ||
board = marlin_maple_MEEB_3DP | ||
build_flags = ${STM32F1_maple.build_flags} | ||
build_flags = ${env:STM32F103RC_maple.build_flags} | ||
-DDEBUG_LEVEL=0 | ||
-DSS_TIMER=4 | ||
-DSTM32_FLASH_SIZE=512 | ||
|
@@ -70,10 +70,10 @@ build_flags = ${STM32F1_maple.build_flags} | |
-DVECT_TAB_OFFSET=0x2000 | ||
-DGENERIC_BOOTLOADER | ||
board_build.ldscript = STM32F103RC_MEEB_3DP.ld | ||
extra_scripts = ${STM32F1_maple.extra_scripts} | ||
extra_scripts = ${env:STM32F103RC_maple.extra_scripts} | ||
pre:buildroot/share/PlatformIO/scripts/STM32F1_create_variant.py | ||
buildroot/share/PlatformIO/scripts/STM32F103RC_MEEB_3DP.py | ||
lib_deps = ${STM32F1_maple.lib_deps} | ||
lib_deps = ${env:STM32F103RC_maple.lib_deps} | ||
USBComposite for [email protected] | ||
custom_marlin.NEOPIXEL_LED = Adafruit NeoPixel=https://github.com/ccccmagicboy/Adafruit_NeoPixel#meeb_3dp_use | ||
debug_tool = stlink | ||
|
@@ -84,9 +84,9 @@ upload_protocol = dfu | |
# | ||
[env:STM32F103RC_fysetc_maple] | ||
extends = env:STM32F103RC_maple | ||
extra_scripts = ${STM32F1_maple.extra_scripts} | ||
extra_scripts = ${env:STM32F103RC_maple.extra_scripts} | ||
buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py | ||
build_flags = ${STM32F1_maple.build_flags} -DDEBUG_LEVEL=0 | ||
build_flags = ${env:STM32F103RC_maple.build_flags} -DDEBUG_LEVEL=0 | ||
lib_ldf_mode = chain | ||
debug_tool = stlink | ||
upload_protocol = serial | ||
|
@@ -101,7 +101,7 @@ upload_protocol = serial | |
extends = env:STM32F103RC_maple | ||
board_build.address = 0x08007000 | ||
board_build.ldscript = STM32F103RC_SKR_MINI_256K.ld | ||
build_flags = ${STM32F1_maple.build_flags} -DDEBUG_LEVEL=0 -DSS_TIMER=4 | ||
build_flags = ${env:STM32F103RC_maple.build_flags} -DDEBUG_LEVEL=0 -DSS_TIMER=4 | ||
monitor_speed = 115200 | ||
|
||
[env:STM32F103RC_btt_USB_maple] | ||
|
@@ -115,10 +115,10 @@ lib_deps = ${env:STM32F103RC_btt_maple.lib_deps} | |
# | ||
[env:STM32F103RE_creality_maple] | ||
extends = env:STM32F103RE_maple | ||
build_flags = ${STM32F1_maple.build_flags} -DTEMP_TIMER_CHAN=4 | ||
build_flags = ${env:STM32F103RE_maple.build_flags} -DTEMP_TIMER_CHAN=4 | ||
board_build.address = 0x08007000 | ||
board_build.ldscript = creality.ld | ||
extra_scripts = ${STM32F1_maple.extra_scripts} | ||
extra_scripts = ${env:STM32F103RE_maple.extra_scripts} | ||
pre:buildroot/share/PlatformIO/scripts/random-bin.py | ||
debug_tool = jlink | ||
upload_protocol = jlink | ||
|
@@ -128,10 +128,10 @@ upload_protocol = jlink | |
# | ||
[env:STM32F103RC_creality_maple] | ||
extends = env:STM32F103RC_maple | ||
build_flags = ${STM32F1_maple.build_flags} -DTEMP_TIMER_CHAN=4 | ||
build_flags = ${env:STM32F103RC_maple.build_flags} -DTEMP_TIMER_CHAN=4 | ||
board_build.address = 0x08007000 | ||
board_build.ldscript = creality.ld | ||
extra_scripts = ${STM32F1_maple.extra_scripts} | ||
extra_scripts = ${env:STM32F103RC_maple.extra_scripts} | ||
pre:buildroot/share/PlatformIO/scripts/random-bin.py | ||
debug_tool = jlink | ||
upload_protocol = jlink | ||
|
@@ -154,14 +154,14 @@ board_build.ldscript = crealityPro.ld | |
extends = env:STM32F103RE_maple | ||
board_build.address = 0x08007000 | ||
board_build.ldscript = STM32F103RE_SKR_MINI_512K.ld | ||
build_flags = ${STM32F1_maple.build_flags} -DDEBUG_LEVEL=0 -DSS_TIMER=4 | ||
build_flags = ${env:STM32F103RE_maple.build_flags} -DDEBUG_LEVEL=0 -DSS_TIMER=4 | ||
debug_tool = stlink | ||
upload_protocol = stlink | ||
|
||
[env:STM32F103RE_btt_USB_maple] | ||
extends = env:STM32F103RE_btt_maple | ||
build_flags = ${env:STM32F103RE_btt_maple.build_flags} -DUSE_USB_COMPOSITE | ||
lib_deps = ${STM32F1_maple.lib_deps} | ||
lib_deps = ${env:STM32F103RE_btt_maple.lib_deps} | ||
USBComposite for [email protected] | ||
|
||
# | ||
|
@@ -238,7 +238,6 @@ board_build.ldscript = mks_robin_pro.ld | |
# | ||
[env:trigorilla_pro_maple] | ||
extends = env:mks_robin_maple | ||
extra_scripts = ${STM32F1_maple.extra_scripts} | ||
|
||
# | ||
# MKS Robin E3D (STM32F103RCT6) and | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters