diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index 0717a3ac5489..85a059ab1b3c 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py b/buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py index 497a035fdf4b..35dda3fa02d0 100644 --- a/buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py +++ b/buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py @@ -1,16 +1,13 @@ -import os +import os, marlin Import("env") STM32_FLASH_SIZE = 256 - for define in env['CPPDEFINES']: - if define[0] == "VECT_TAB_ADDR": - env['CPPDEFINES'].remove(define) if define[0] == "STM32_FLASH_SIZE": STM32_FLASH_SIZE = define[1] # Relocate firmware from 0x08000000 to 0x08007000 -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000")) +marlin.relocate_firmware("0x08007000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/STM32F103RC_SKR_MINI_" + str(STM32_FLASH_SIZE) + "K.ld") for i, flag in enumerate(env["LINKFLAGS"]): diff --git a/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py b/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py index 1aeaa4d700d2..d472ce7696aa 100644 --- a/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py +++ b/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py @@ -3,8 +3,8 @@ Import("env", "projenv") # Relocate firmware from 0x08000000 to 0x08002000 -#env['CPPDEFINES'].remove(("VECT_TAB_ADDR", 134217728)) -#env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08010000")) +#import marlin +#marlin.relocate_firmware("0x08001000") # Custom HEX from ELF env.AddPostAction( diff --git a/buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py b/buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py index af4c66cd21e4..03842e623048 100644 --- a/buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py +++ b/buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py @@ -1,8 +1,8 @@ -import os +import os, marlin Import("env") # Relocate firmware from 0x08000000 to 0x08007000 -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000")) +marlin.relocate_firmware("0x08007000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/STM32F103RE_SKR_E3_DIP.ld") for i, flag in enumerate(env["LINKFLAGS"]): diff --git a/buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py b/buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py index ece47ed09601..8519d3833aad 100644 --- a/buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py +++ b/buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py @@ -1,11 +1,8 @@ -import os +import os, marlin Import("env") # Relocate firmware from 0x08000000 to 0x08010000 -for define in env['CPPDEFINES']: - if define[0] == "VECT_TAB_ADDR": - env['CPPDEFINES'].remove(define) -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08010000")) +marlin.relocate_firmware("0x08010000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/STM32F103VE_longer.ld") for i, flag in enumerate(env["LINKFLAGS"]): @@ -14,7 +11,6 @@ elif flag == "-T": env["LINKFLAGS"][i + 1] = custom_ld_script - # Rename ${PROGNAME}.bin and save it as 'project.bin' (No encryption on the Longer3D) def encrypt(source, target, env): firmware = open(target[0].path, "rb") diff --git a/buildroot/share/PlatformIO/scripts/chitu_crypt.py b/buildroot/share/PlatformIO/scripts/chitu_crypt.py index d706665e907b..b347083f764d 100644 --- a/buildroot/share/PlatformIO/scripts/chitu_crypt.py +++ b/buildroot/share/PlatformIO/scripts/chitu_crypt.py @@ -1,12 +1,8 @@ -import os -import struct +import os,struct,marlin Import("env") # Relocate firmware from 0x08000000 to 0x08008800 -for define in env['CPPDEFINES']: - if define[0] == "VECT_TAB_ADDR": - env['CPPDEFINES'].remove(define) -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x8008800")) +marlin.relocate_firmware("0x08008800") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/chitu_f103.ld") for i, flag in enumerate(env["LINKFLAGS"]): @@ -15,7 +11,6 @@ elif flag == "-T": env["LINKFLAGS"][i + 1] = custom_ld_script - def calculate_crc(contents, seed): accumulating_xor_value = seed; diff --git a/buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py b/buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py index de1a5e787d27..648c13789336 100644 --- a/buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py +++ b/buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py @@ -33,8 +33,8 @@ shutil.copy(full_file_name, variant_dir) # Relocate firmware from 0x08000000 to 0x08002000 -#env['CPPDEFINES'].remove(("VECT_TAB_ADDR", 134217728)) -#env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08010000")) +#import marlin +#marlin.relocate_firmware("0x08010000") #env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/fysetc_aio_ii.ld") # Custom HEX from ELF diff --git a/buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py b/buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py index 6c8a4f6034c2..dc6bf033ef15 100644 --- a/buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py +++ b/buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py @@ -1,11 +1,8 @@ -import os +import os, marlin Import("env") # Relocate firmware from 0x08000000 to 0x0800A000 -env['CPPDEFINES'].remove(("VECT_TAB_ADDR", "0x8000000")) -#alternatively, for STSTM <=5.1.0 use line below -#env['CPPDEFINES'].remove(("VECT_TAB_ADDR", 134217728)) -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x0800A000")) +marlin.relocate_firmware("0x0800A000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/jgaurora_a5s_a1.ld") for i, flag in enumerate(env["LINKFLAGS"]): @@ -45,4 +42,3 @@ def addboot(source,target,env): #os.rename(target[0].dir.path+'/firmware_with_bootloader.bin', target[0].dir.path+'/firmware.bin') env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", addboot); - diff --git a/buildroot/share/PlatformIO/scripts/marlin.py b/buildroot/share/PlatformIO/scripts/marlin.py new file mode 100644 index 000000000000..c22751b55dd2 --- /dev/null +++ b/buildroot/share/PlatformIO/scripts/marlin.py @@ -0,0 +1,17 @@ +# +# buildroot/share/PlatformIO/scripts/marlin.py +# Helper module with some commonly-used functions +# +from SCons.Script import DefaultEnvironment +env = DefaultEnvironment() + +def replace_define(field, value): + envdefs = env['CPPDEFINES'].copy() + for define in envdefs: + if define[0] == field: + env['CPPDEFINES'].remove(define) + env['CPPDEFINES'].append((field, value)) + +# Relocate the firmware to a new address, such as "0x08005000" +def relocate_firmware(address): + replace_define("VECT_TAB_ADDR", address) diff --git a/buildroot/share/PlatformIO/scripts/mks_robin.py b/buildroot/share/PlatformIO/scripts/mks_robin.py index dd2342bf0df2..b687645d0083 100644 --- a/buildroot/share/PlatformIO/scripts/mks_robin.py +++ b/buildroot/share/PlatformIO/scripts/mks_robin.py @@ -1,11 +1,8 @@ -import os +import os, marlin Import("env") # Relocate firmware from 0x08000000 to 0x08007000 -for define in env['CPPDEFINES']: - if define[0] == "VECT_TAB_ADDR": - env['CPPDEFINES'].remove(define) -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000")) +marlin.relocate_firmware("0x08007000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin.ld") for i, flag in enumerate(env["LINKFLAGS"]): diff --git a/buildroot/share/PlatformIO/scripts/mks_robin_lite.py b/buildroot/share/PlatformIO/scripts/mks_robin_lite.py index 2f3ae1fa9a17..1d6d90b0855a 100644 --- a/buildroot/share/PlatformIO/scripts/mks_robin_lite.py +++ b/buildroot/share/PlatformIO/scripts/mks_robin_lite.py @@ -1,11 +1,8 @@ -import os +import os, marlin Import("env") # Relocate firmware from 0x08000000 to 0x08005000 -for define in env['CPPDEFINES']: - if define[0] == "VECT_TAB_ADDR": - env['CPPDEFINES'].remove(define) -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08005000")) +marlin.relocate_firmware("0x08005000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_lite.ld") for i, flag in enumerate(env["LINKFLAGS"]): @@ -14,7 +11,6 @@ elif flag == "-T": env["LINKFLAGS"][i + 1] = custom_ld_script - # Encrypt ${PROGNAME}.bin and save it as 'mksLite.bin' def encrypt(source, target, env): import sys diff --git a/buildroot/share/PlatformIO/scripts/mks_robin_mini.py b/buildroot/share/PlatformIO/scripts/mks_robin_mini.py index d38669830158..51c9adec6a08 100755 --- a/buildroot/share/PlatformIO/scripts/mks_robin_mini.py +++ b/buildroot/share/PlatformIO/scripts/mks_robin_mini.py @@ -1,11 +1,8 @@ -import os +import os, marlin Import("env") # Relocate firmware from 0x08000000 to 0x08007000 -for define in env['CPPDEFINES']: - if define[0] == "VECT_TAB_ADDR": - env['CPPDEFINES'].remove(define) -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000")) +marlin.relocate_firmware("0x08007000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_mini.ld") for i, flag in enumerate(env["LINKFLAGS"]): @@ -14,7 +11,6 @@ elif flag == "-T": env["LINKFLAGS"][i + 1] = custom_ld_script - # Encrypt ${PROGNAME}.bin and save it as 'Robin_mini.bin' def encrypt(source, target, env): import sys diff --git a/buildroot/share/PlatformIO/scripts/mks_robin_nano.py b/buildroot/share/PlatformIO/scripts/mks_robin_nano.py index a68fd308d443..a3c27224cc88 100755 --- a/buildroot/share/PlatformIO/scripts/mks_robin_nano.py +++ b/buildroot/share/PlatformIO/scripts/mks_robin_nano.py @@ -1,11 +1,8 @@ -import os +import os, marlin Import("env") # Relocate firmware from 0x08000000 to 0x08007000 -for define in env['CPPDEFINES']: - if define[0] == "VECT_TAB_ADDR": - env['CPPDEFINES'].remove(define) -env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000")) +marlin.relocate_firmware("0x08007000") custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_nano.ld") for i, flag in enumerate(env["LINKFLAGS"]): @@ -14,7 +11,6 @@ elif flag == "-T": env["LINKFLAGS"][i + 1] = custom_ld_script - # Encrypt ${PROGNAME}.bin and save it as 'Robin_nano.bin' def encrypt(source, target, env): import sys diff --git a/config/default/Configuration_adv.h b/config/default/Configuration_adv.h index 0717a3ac5489..85a059ab1b3c 100644 --- a/config/default/Configuration_adv.h +++ b/config/default/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/3DFabXYZ/Migbot/Configuration_adv.h b/config/examples/3DFabXYZ/Migbot/Configuration_adv.h index f6e0e67bf705..143e6bd4442f 100644 --- a/config/examples/3DFabXYZ/Migbot/Configuration_adv.h +++ b/config/examples/3DFabXYZ/Migbot/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/ADIMLab/Gantry v1/Configuration_adv.h b/config/examples/ADIMLab/Gantry v1/Configuration_adv.h index ddc6418dedad..7671f7aab033 100644 --- a/config/examples/ADIMLab/Gantry v1/Configuration_adv.h +++ b/config/examples/ADIMLab/Gantry v1/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/ADIMLab/Gantry v2/Configuration_adv.h b/config/examples/ADIMLab/Gantry v2/Configuration_adv.h index feb2bf655f17..820b32e07862 100644 --- a/config/examples/ADIMLab/Gantry v2/Configuration_adv.h +++ b/config/examples/ADIMLab/Gantry v2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/AlephObjects/TAZ4/Configuration_adv.h b/config/examples/AlephObjects/TAZ4/Configuration_adv.h index c9102adff827..bc30de61ea7e 100644 --- a/config/examples/AlephObjects/TAZ4/Configuration_adv.h +++ b/config/examples/AlephObjects/TAZ4/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Alfawise/U20-bltouch/Configuration_adv.h b/config/examples/Alfawise/U20-bltouch/Configuration_adv.h index 5e2d69cf3b70..29d4bcdf953d 100644 --- a/config/examples/Alfawise/U20-bltouch/Configuration_adv.h +++ b/config/examples/Alfawise/U20-bltouch/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Alfawise/U20/Configuration_adv.h b/config/examples/Alfawise/U20/Configuration_adv.h index 4378e881ceea..fcc8ed5bb2c6 100644 --- a/config/examples/Alfawise/U20/Configuration_adv.h +++ b/config/examples/Alfawise/U20/Configuration_adv.h @@ -1773,7 +1773,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/AliExpress/UM2pExt/Configuration_adv.h b/config/examples/AliExpress/UM2pExt/Configuration_adv.h index 6b222a360643..361c1bba5699 100644 --- a/config/examples/AliExpress/UM2pExt/Configuration_adv.h +++ b/config/examples/AliExpress/UM2pExt/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Anet/A2/Configuration_adv.h b/config/examples/Anet/A2/Configuration_adv.h index 0877df9123d3..d999c592ee2e 100644 --- a/config/examples/Anet/A2/Configuration_adv.h +++ b/config/examples/Anet/A2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Anet/A2plus/Configuration_adv.h b/config/examples/Anet/A2plus/Configuration_adv.h index 0877df9123d3..d999c592ee2e 100644 --- a/config/examples/Anet/A2plus/Configuration_adv.h +++ b/config/examples/Anet/A2plus/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Anet/A6/Configuration_adv.h b/config/examples/Anet/A6/Configuration_adv.h index 237b4f04f03e..da7fce86ffff 100644 --- a/config/examples/Anet/A6/Configuration_adv.h +++ b/config/examples/Anet/A6/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Anet/A8/Configuration_adv.h b/config/examples/Anet/A8/Configuration_adv.h index 78779f071e24..1454aff959c2 100644 --- a/config/examples/Anet/A8/Configuration_adv.h +++ b/config/examples/Anet/A8/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Anet/A8plus/Configuration_adv.h b/config/examples/Anet/A8plus/Configuration_adv.h index d59f89b1de28..620d67fe5301 100644 --- a/config/examples/Anet/A8plus/Configuration_adv.h +++ b/config/examples/Anet/A8plus/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Anet/E16/Configuration_adv.h b/config/examples/Anet/E16/Configuration_adv.h index b0912b3500dc..a596367abb5b 100644 --- a/config/examples/Anet/E16/Configuration_adv.h +++ b/config/examples/Anet/E16/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/AnyCubic/i3/Configuration_adv.h b/config/examples/AnyCubic/i3/Configuration_adv.h index 077a2c5f0e4b..bc2a45d4603f 100644 --- a/config/examples/AnyCubic/i3/Configuration_adv.h +++ b/config/examples/AnyCubic/i3/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/ArmEd/Configuration_adv.h b/config/examples/ArmEd/Configuration_adv.h index b7394506be20..d06b942d2296 100644 --- a/config/examples/ArmEd/Configuration_adv.h +++ b/config/examples/ArmEd/Configuration_adv.h @@ -1776,7 +1776,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h b/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h index 4cf9824a7337..22c4c8c10bc6 100644 --- a/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h +++ b/config/examples/BIBO/TouchX/cyclops/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/BIBO/TouchX/default/Configuration_adv.h b/config/examples/BIBO/TouchX/default/Configuration_adv.h index 4c459ab463b0..fff9097e532b 100644 --- a/config/examples/BIBO/TouchX/default/Configuration_adv.h +++ b/config/examples/BIBO/TouchX/default/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/BQ/Hephestos/Configuration_adv.h b/config/examples/BQ/Hephestos/Configuration_adv.h index b3bc3c2ce3ba..a5b52227b392 100644 --- a/config/examples/BQ/Hephestos/Configuration_adv.h +++ b/config/examples/BQ/Hephestos/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/BQ/Hephestos_2/Configuration_adv.h b/config/examples/BQ/Hephestos_2/Configuration_adv.h index 26482ce44d1f..8cc86412a362 100644 --- a/config/examples/BQ/Hephestos_2/Configuration_adv.h +++ b/config/examples/BQ/Hephestos_2/Configuration_adv.h @@ -1780,7 +1780,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/BQ/WITBOX/Configuration_adv.h b/config/examples/BQ/WITBOX/Configuration_adv.h index b3bc3c2ce3ba..a5b52227b392 100644 --- a/config/examples/BQ/WITBOX/Configuration_adv.h +++ b/config/examples/BQ/WITBOX/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/BigTreeTech/SKR Mini E3 1.0/Configuration_adv.h b/config/examples/BigTreeTech/SKR Mini E3 1.0/Configuration_adv.h index 905457171661..41a269ec3b5b 100644 --- a/config/examples/BigTreeTech/SKR Mini E3 1.0/Configuration_adv.h +++ b/config/examples/BigTreeTech/SKR Mini E3 1.0/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/BigTreeTech/SKR Mini E3 1.2/Configuration_adv.h b/config/examples/BigTreeTech/SKR Mini E3 1.2/Configuration_adv.h index 7bdbe0e295fb..36bec756fb81 100644 --- a/config/examples/BigTreeTech/SKR Mini E3 1.2/Configuration_adv.h +++ b/config/examples/BigTreeTech/SKR Mini E3 1.2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Cartesio/Configuration_adv.h b/config/examples/Cartesio/Configuration_adv.h index 88fe81eff364..957f9814e0bb 100644 --- a/config/examples/Cartesio/Configuration_adv.h +++ b/config/examples/Cartesio/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/CR-10/Configuration_adv.h b/config/examples/Creality/CR-10/Configuration_adv.h index 3b565345ff07..efe144ae4642 100644 --- a/config/examples/Creality/CR-10/Configuration_adv.h +++ b/config/examples/Creality/CR-10/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/CR-10S/Configuration_adv.h b/config/examples/Creality/CR-10S/Configuration_adv.h index 9cc92fe441f0..6d0aa31dd66c 100644 --- a/config/examples/Creality/CR-10S/Configuration_adv.h +++ b/config/examples/Creality/CR-10S/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/CR-10_5S/Configuration_adv.h b/config/examples/Creality/CR-10_5S/Configuration_adv.h index c83327f0d6c0..c1cf47831e78 100644 --- a/config/examples/Creality/CR-10_5S/Configuration_adv.h +++ b/config/examples/Creality/CR-10_5S/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/CR-10mini/Configuration_adv.h b/config/examples/Creality/CR-10mini/Configuration_adv.h index 056b8b42b6f2..e25a5f8d00cc 100644 --- a/config/examples/Creality/CR-10mini/Configuration_adv.h +++ b/config/examples/Creality/CR-10mini/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/CR-20 Pro/Configuration_adv.h b/config/examples/Creality/CR-20 Pro/Configuration_adv.h index fc71e44766da..b846b5612cc1 100644 --- a/config/examples/Creality/CR-20 Pro/Configuration_adv.h +++ b/config/examples/Creality/CR-20 Pro/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/CR-20/Configuration_adv.h b/config/examples/Creality/CR-20/Configuration_adv.h index f390ef926a21..02b7f895eb42 100644 --- a/config/examples/Creality/CR-20/Configuration_adv.h +++ b/config/examples/Creality/CR-20/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/CR-8/Configuration_adv.h b/config/examples/Creality/CR-8/Configuration_adv.h index a6aa9683b678..d76b46eea7d2 100644 --- a/config/examples/Creality/CR-8/Configuration_adv.h +++ b/config/examples/Creality/CR-8/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/Ender-2/Configuration_adv.h b/config/examples/Creality/Ender-2/Configuration_adv.h index 58c274755904..98a35e776ba3 100644 --- a/config/examples/Creality/Ender-2/Configuration_adv.h +++ b/config/examples/Creality/Ender-2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/Ender-3/Configuration_adv.h b/config/examples/Creality/Ender-3/Configuration_adv.h index fbc88da5ca90..fd39e82fa3f0 100644 --- a/config/examples/Creality/Ender-3/Configuration_adv.h +++ b/config/examples/Creality/Ender-3/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/Ender-4/Configuration_adv.h b/config/examples/Creality/Ender-4/Configuration_adv.h index 18ea1bc67cc7..99ddcdadc48e 100644 --- a/config/examples/Creality/Ender-4/Configuration_adv.h +++ b/config/examples/Creality/Ender-4/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Creality/Ender-5/Configuration_adv.h b/config/examples/Creality/Ender-5/Configuration_adv.h index 7fcfa0ea491b..5e96bc28903f 100644 --- a/config/examples/Creality/Ender-5/Configuration_adv.h +++ b/config/examples/Creality/Ender-5/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Dagoma/Disco Ultimate/Configuration_adv.h b/config/examples/Dagoma/Disco Ultimate/Configuration_adv.h index df8258fee1b6..835f801d178b 100644 --- a/config/examples/Dagoma/Disco Ultimate/Configuration_adv.h +++ b/config/examples/Dagoma/Disco Ultimate/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/EVNOVO (Artillery)/Sidewinder X1/Configuration_adv.h b/config/examples/EVNOVO (Artillery)/Sidewinder X1/Configuration_adv.h index 8957ef0602f8..a2dfb4229d1e 100755 --- a/config/examples/EVNOVO (Artillery)/Sidewinder X1/Configuration_adv.h +++ b/config/examples/EVNOVO (Artillery)/Sidewinder X1/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/EXP3D/Imprimante multifonction/Configuration_adv.h b/config/examples/EXP3D/Imprimante multifonction/Configuration_adv.h index 406ddaec03c9..ccc465b207a3 100644 --- a/config/examples/EXP3D/Imprimante multifonction/Configuration_adv.h +++ b/config/examples/EXP3D/Imprimante multifonction/Configuration_adv.h @@ -1768,7 +1768,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Einstart-S/Configuration_adv.h b/config/examples/Einstart-S/Configuration_adv.h index f241d3ca02f8..45ec4b40e2f9 100644 --- a/config/examples/Einstart-S/Configuration_adv.h +++ b/config/examples/Einstart-S/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FYSETC/AIO_II/Configuration_adv.h b/config/examples/FYSETC/AIO_II/Configuration_adv.h index fae2e76c716b..71ead96646bf 100644 --- a/config/examples/FYSETC/AIO_II/Configuration_adv.h +++ b/config/examples/FYSETC/AIO_II/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FYSETC/Cheetah 1.2/BLTouch/Configuration_adv.h b/config/examples/FYSETC/Cheetah 1.2/BLTouch/Configuration_adv.h index b4e3f7dd1de0..908f6dd96476 100644 --- a/config/examples/FYSETC/Cheetah 1.2/BLTouch/Configuration_adv.h +++ b/config/examples/FYSETC/Cheetah 1.2/BLTouch/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FYSETC/Cheetah 1.2/base/Configuration_adv.h b/config/examples/FYSETC/Cheetah 1.2/base/Configuration_adv.h index b4e3f7dd1de0..908f6dd96476 100644 --- a/config/examples/FYSETC/Cheetah 1.2/base/Configuration_adv.h +++ b/config/examples/FYSETC/Cheetah 1.2/base/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FYSETC/Cheetah/BLTouch/Configuration_adv.h b/config/examples/FYSETC/Cheetah/BLTouch/Configuration_adv.h index b4e3f7dd1de0..908f6dd96476 100644 --- a/config/examples/FYSETC/Cheetah/BLTouch/Configuration_adv.h +++ b/config/examples/FYSETC/Cheetah/BLTouch/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FYSETC/Cheetah/base/Configuration_adv.h b/config/examples/FYSETC/Cheetah/base/Configuration_adv.h index b4e3f7dd1de0..908f6dd96476 100644 --- a/config/examples/FYSETC/Cheetah/base/Configuration_adv.h +++ b/config/examples/FYSETC/Cheetah/base/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FYSETC/F6_13/Configuration_adv.h b/config/examples/FYSETC/F6_13/Configuration_adv.h index a627f47fa2e2..540f83ee218e 100644 --- a/config/examples/FYSETC/F6_13/Configuration_adv.h +++ b/config/examples/FYSETC/F6_13/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FYSETC/S6/Configuration_adv.h b/config/examples/FYSETC/S6/Configuration_adv.h index 0717a3ac5489..85a059ab1b3c 100644 --- a/config/examples/FYSETC/S6/Configuration_adv.h +++ b/config/examples/FYSETC/S6/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Felix/DUAL/Configuration_adv.h b/config/examples/Felix/DUAL/Configuration_adv.h index c34ef9d136be..a4add9f77278 100644 --- a/config/examples/Felix/DUAL/Configuration_adv.h +++ b/config/examples/Felix/DUAL/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Felix/Single/Configuration_adv.h b/config/examples/Felix/Single/Configuration_adv.h index c34ef9d136be..a4add9f77278 100644 --- a/config/examples/Felix/Single/Configuration_adv.h +++ b/config/examples/Felix/Single/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FlashForge/CreatorPro/Configuration_adv.h b/config/examples/FlashForge/CreatorPro/Configuration_adv.h index 2b5601c884f3..fcd8d15fd217 100644 --- a/config/examples/FlashForge/CreatorPro/Configuration_adv.h +++ b/config/examples/FlashForge/CreatorPro/Configuration_adv.h @@ -1771,7 +1771,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/FolgerTech/i3-2020/Configuration_adv.h b/config/examples/FolgerTech/i3-2020/Configuration_adv.h index 32e7fa59219b..a00dafa36a3c 100644 --- a/config/examples/FolgerTech/i3-2020/Configuration_adv.h +++ b/config/examples/FolgerTech/i3-2020/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Formbot/Raptor/Configuration_adv.h b/config/examples/Formbot/Raptor/Configuration_adv.h index 067a228b36a0..f9c351c95228 100644 --- a/config/examples/Formbot/Raptor/Configuration_adv.h +++ b/config/examples/Formbot/Raptor/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Formbot/T_Rex_2+/Configuration_adv.h b/config/examples/Formbot/T_Rex_2+/Configuration_adv.h index a26f7919575a..adc1d8069e52 100644 --- a/config/examples/Formbot/T_Rex_2+/Configuration_adv.h +++ b/config/examples/Formbot/T_Rex_2+/Configuration_adv.h @@ -1776,7 +1776,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Formbot/T_Rex_3/Configuration_adv.h b/config/examples/Formbot/T_Rex_3/Configuration_adv.h index 9b94acd2c702..aca9f912664f 100644 --- a/config/examples/Formbot/T_Rex_3/Configuration_adv.h +++ b/config/examples/Formbot/T_Rex_3/Configuration_adv.h @@ -1776,7 +1776,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A10/Configuration_adv.h b/config/examples/Geeetech/A10/Configuration_adv.h index 27ba0139023a..2714aea76455 100644 --- a/config/examples/Geeetech/A10/Configuration_adv.h +++ b/config/examples/Geeetech/A10/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A10D/Configuration_adv.h b/config/examples/Geeetech/A10D/Configuration_adv.h index 9b70f7ec2919..cbbb45e50798 100644 --- a/config/examples/Geeetech/A10D/Configuration_adv.h +++ b/config/examples/Geeetech/A10D/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A10M/Configuration_adv.h b/config/examples/Geeetech/A10M/Configuration_adv.h index 0acc6c12cafe..34f628d117fc 100644 --- a/config/examples/Geeetech/A10M/Configuration_adv.h +++ b/config/examples/Geeetech/A10M/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A10T/Configuration_adv.h b/config/examples/Geeetech/A10T/Configuration_adv.h index 0acc6c12cafe..34f628d117fc 100644 --- a/config/examples/Geeetech/A10T/Configuration_adv.h +++ b/config/examples/Geeetech/A10T/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A20/Configuration_adv.h b/config/examples/Geeetech/A20/Configuration_adv.h index 80c55b93eaf0..ee2ec4569778 100644 --- a/config/examples/Geeetech/A20/Configuration_adv.h +++ b/config/examples/Geeetech/A20/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A20M/Configuration_adv.h b/config/examples/Geeetech/A20M/Configuration_adv.h index 80c55b93eaf0..ee2ec4569778 100644 --- a/config/examples/Geeetech/A20M/Configuration_adv.h +++ b/config/examples/Geeetech/A20M/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A20T/Configuration_adv.h b/config/examples/Geeetech/A20T/Configuration_adv.h index 80c55b93eaf0..ee2ec4569778 100644 --- a/config/examples/Geeetech/A20T/Configuration_adv.h +++ b/config/examples/Geeetech/A20T/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/A30/Configuration_adv.h b/config/examples/Geeetech/A30/Configuration_adv.h index 25b9c8f653a0..5cbb147c4f00 100644 --- a/config/examples/Geeetech/A30/Configuration_adv.h +++ b/config/examples/Geeetech/A30/Configuration_adv.h @@ -1771,7 +1771,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/E180/Configuration_adv.h b/config/examples/Geeetech/E180/Configuration_adv.h index 25b9c8f653a0..5cbb147c4f00 100644 --- a/config/examples/Geeetech/E180/Configuration_adv.h +++ b/config/examples/Geeetech/E180/Configuration_adv.h @@ -1771,7 +1771,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/MeCreator2/Configuration_adv.h b/config/examples/Geeetech/MeCreator2/Configuration_adv.h index 010e16912942..ebbbe0abfda3 100644 --- a/config/examples/Geeetech/MeCreator2/Configuration_adv.h +++ b/config/examples/Geeetech/MeCreator2/Configuration_adv.h @@ -1771,7 +1771,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/PI3A PRO/Configuration_adv.h b/config/examples/Geeetech/PI3A PRO/Configuration_adv.h index 0036033cb32b..59f36bd710de 100644 --- a/config/examples/Geeetech/PI3A PRO/Configuration_adv.h +++ b/config/examples/Geeetech/PI3A PRO/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h b/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h index 27ba0139023a..2714aea76455 100644 --- a/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h +++ b/config/examples/Geeetech/Prusa i3 Pro C/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h b/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h index 27ba0139023a..2714aea76455 100644 --- a/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h +++ b/config/examples/Geeetech/Prusa i3 Pro W/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/HMS434/Configuration_adv.h b/config/examples/HMS434/Configuration_adv.h index e711a451caac..2e3471dc39cf 100644 --- a/config/examples/HMS434/Configuration_adv.h +++ b/config/examples/HMS434/Configuration_adv.h @@ -1764,7 +1764,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Infitary/i3-M508/Configuration_adv.h b/config/examples/Infitary/i3-M508/Configuration_adv.h index 7d53047a3694..bb27a3f0b5bb 100644 --- a/config/examples/Infitary/i3-M508/Configuration_adv.h +++ b/config/examples/Infitary/i3-M508/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/JGAurora/A1/Configuration_adv.h b/config/examples/JGAurora/A1/Configuration_adv.h index 9121532034af..88281d763c03 100644 --- a/config/examples/JGAurora/A1/Configuration_adv.h +++ b/config/examples/JGAurora/A1/Configuration_adv.h @@ -1777,7 +1777,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/JGAurora/A5/Configuration_adv.h b/config/examples/JGAurora/A5/Configuration_adv.h index 223817755505..05df32d9023f 100644 --- a/config/examples/JGAurora/A5/Configuration_adv.h +++ b/config/examples/JGAurora/A5/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/JGAurora/A5S/Configuration_adv.h b/config/examples/JGAurora/A5S/Configuration_adv.h index 9121532034af..88281d763c03 100644 --- a/config/examples/JGAurora/A5S/Configuration_adv.h +++ b/config/examples/JGAurora/A5S/Configuration_adv.h @@ -1777,7 +1777,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/MakerParts/Configuration_adv.h b/config/examples/MakerParts/Configuration_adv.h index 1ffe2ebd84a8..33c9bbb8e1a5 100644 --- a/config/examples/MakerParts/Configuration_adv.h +++ b/config/examples/MakerParts/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Malyan/M150/Configuration_adv.h b/config/examples/Malyan/M150/Configuration_adv.h index 3f8ddd31d6c8..a35da619b1b5 100644 --- a/config/examples/Malyan/M150/Configuration_adv.h +++ b/config/examples/Malyan/M150/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Malyan/M200/Configuration_adv.h b/config/examples/Malyan/M200/Configuration_adv.h index cc105c2da2fc..634200eee1e5 100644 --- a/config/examples/Malyan/M200/Configuration_adv.h +++ b/config/examples/Malyan/M200/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Micromake/C1/enhanced/Configuration_adv.h b/config/examples/Micromake/C1/enhanced/Configuration_adv.h index 850f484e367e..2c90fb685d08 100644 --- a/config/examples/Micromake/C1/enhanced/Configuration_adv.h +++ b/config/examples/Micromake/C1/enhanced/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Mks/Robin/Configuration_adv.h b/config/examples/Mks/Robin/Configuration_adv.h index a53aef7c8526..613ce0dd5adf 100644 --- a/config/examples/Mks/Robin/Configuration_adv.h +++ b/config/examples/Mks/Robin/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Mks/Sbase/Configuration_adv.h b/config/examples/Mks/Sbase/Configuration_adv.h index 95fd438f528b..9a4c0c383f8c 100644 --- a/config/examples/Mks/Sbase/Configuration_adv.h +++ b/config/examples/Mks/Sbase/Configuration_adv.h @@ -1773,7 +1773,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Modix/Big60/Configuration_adv.h b/config/examples/Modix/Big60/Configuration_adv.h index c559d78c71a9..bd998be3e2a6 100644 --- a/config/examples/Modix/Big60/Configuration_adv.h +++ b/config/examples/Modix/Big60/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/RapideLite/RL200/Configuration_adv.h b/config/examples/RapideLite/RL200/Configuration_adv.h index e4a5da79c1d0..c43ffb3519af 100644 --- a/config/examples/RapideLite/RL200/Configuration_adv.h +++ b/config/examples/RapideLite/RL200/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Renkforce/RF100/Configuration_adv.h b/config/examples/Renkforce/RF100/Configuration_adv.h index 213d7cdfdc65..4d559819315a 100644 --- a/config/examples/Renkforce/RF100/Configuration_adv.h +++ b/config/examples/Renkforce/RF100/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Renkforce/RF100XL/Configuration_adv.h b/config/examples/Renkforce/RF100XL/Configuration_adv.h index 213d7cdfdc65..4d559819315a 100644 --- a/config/examples/Renkforce/RF100XL/Configuration_adv.h +++ b/config/examples/Renkforce/RF100XL/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Renkforce/RF100v2/Configuration_adv.h b/config/examples/Renkforce/RF100v2/Configuration_adv.h index 213d7cdfdc65..4d559819315a 100644 --- a/config/examples/Renkforce/RF100v2/Configuration_adv.h +++ b/config/examples/Renkforce/RF100v2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/RigidBot/Configuration_adv.h b/config/examples/RigidBot/Configuration_adv.h index 3975154abf1d..db9940510c0a 100644 --- a/config/examples/RigidBot/Configuration_adv.h +++ b/config/examples/RigidBot/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/SCARA/MP_SCARA/Configuration_adv.h b/config/examples/SCARA/MP_SCARA/Configuration_adv.h index 9f989da02a1d..1f745e99327a 100644 --- a/config/examples/SCARA/MP_SCARA/Configuration_adv.h +++ b/config/examples/SCARA/MP_SCARA/Configuration_adv.h @@ -1678,7 +1678,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/SCARA/Morgan/Configuration_adv.h b/config/examples/SCARA/Morgan/Configuration_adv.h index 15f2467c471b..d2922ab85c61 100644 --- a/config/examples/SCARA/Morgan/Configuration_adv.h +++ b/config/examples/SCARA/Morgan/Configuration_adv.h @@ -1769,7 +1769,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h b/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h index 0c639dd7f924..0d51803ea009 100644 --- a/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h +++ b/config/examples/STM32/Black_STM32F407VET6/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Sanguinololu/Configuration_adv.h b/config/examples/Sanguinololu/Configuration_adv.h index ca5e4ef67f19..c7bd3a71bfa5 100644 --- a/config/examples/Sanguinololu/Configuration_adv.h +++ b/config/examples/Sanguinololu/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Tevo/Michelangelo/Configuration_adv.h b/config/examples/Tevo/Michelangelo/Configuration_adv.h index 7e4d756af43b..16cde821ff12 100644 --- a/config/examples/Tevo/Michelangelo/Configuration_adv.h +++ b/config/examples/Tevo/Michelangelo/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Tevo/Tarantula Pro/Configuration_adv.h b/config/examples/Tevo/Tarantula Pro/Configuration_adv.h index 544fdaa9a99f..01bbee4f2303 100755 --- a/config/examples/Tevo/Tarantula Pro/Configuration_adv.h +++ b/config/examples/Tevo/Tarantula Pro/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Tevo/Tornado/V1 (MKS Base)/Configuration_adv.h b/config/examples/Tevo/Tornado/V1 (MKS Base)/Configuration_adv.h index 5404212285e0..d840155bde61 100755 --- a/config/examples/Tevo/Tornado/V1 (MKS Base)/Configuration_adv.h +++ b/config/examples/Tevo/Tornado/V1 (MKS Base)/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Tevo/Tornado/V2 (MKS GEN-L)/Configuration_adv.h b/config/examples/Tevo/Tornado/V2 (MKS GEN-L)/Configuration_adv.h index 5404212285e0..d840155bde61 100755 --- a/config/examples/Tevo/Tornado/V2 (MKS GEN-L)/Configuration_adv.h +++ b/config/examples/Tevo/Tornado/V2 (MKS GEN-L)/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/TheBorg/Configuration_adv.h b/config/examples/TheBorg/Configuration_adv.h index 9bf9b90243c2..767561df207e 100644 --- a/config/examples/TheBorg/Configuration_adv.h +++ b/config/examples/TheBorg/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/TinyBoy2/Configuration_adv.h b/config/examples/TinyBoy2/Configuration_adv.h index e31f45fc4066..bfb900304c9f 100644 --- a/config/examples/TinyBoy2/Configuration_adv.h +++ b/config/examples/TinyBoy2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Tronxy/X3A/Configuration_adv.h b/config/examples/Tronxy/X3A/Configuration_adv.h index 06c9241c3d52..e8bbe3f6ed28 100644 --- a/config/examples/Tronxy/X3A/Configuration_adv.h +++ b/config/examples/Tronxy/X3A/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Tronxy/X5S-2E/Configuration_adv.h b/config/examples/Tronxy/X5S-2E/Configuration_adv.h index 5b0f04f4da28..e39b1f72403b 100644 --- a/config/examples/Tronxy/X5S-2E/Configuration_adv.h +++ b/config/examples/Tronxy/X5S-2E/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/UltiMachine/Archim1/Configuration_adv.h b/config/examples/UltiMachine/Archim1/Configuration_adv.h index b7530e6a837a..16b52e269d72 100644 --- a/config/examples/UltiMachine/Archim1/Configuration_adv.h +++ b/config/examples/UltiMachine/Archim1/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/UltiMachine/Archim2/Configuration_adv.h b/config/examples/UltiMachine/Archim2/Configuration_adv.h index cef11435db4a..b55aeec69852 100644 --- a/config/examples/UltiMachine/Archim2/Configuration_adv.h +++ b/config/examples/UltiMachine/Archim2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/VORONDesign/Configuration_adv.h b/config/examples/VORONDesign/Configuration_adv.h index a5789a18351d..4ec3385c7180 100644 --- a/config/examples/VORONDesign/Configuration_adv.h +++ b/config/examples/VORONDesign/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Velleman/K8200/Configuration_adv.h b/config/examples/Velleman/K8200/Configuration_adv.h index 9b3b9a0a4884..49753cfc5b67 100644 --- a/config/examples/Velleman/K8200/Configuration_adv.h +++ b/config/examples/Velleman/K8200/Configuration_adv.h @@ -1785,7 +1785,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Velleman/K8400/Dual-head/Configuration_adv.h b/config/examples/Velleman/K8400/Dual-head/Configuration_adv.h index 07af8fcd6136..786e53027015 100644 --- a/config/examples/Velleman/K8400/Dual-head/Configuration_adv.h +++ b/config/examples/Velleman/K8400/Dual-head/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Velleman/K8400/Single-head/Configuration_adv.h b/config/examples/Velleman/K8400/Single-head/Configuration_adv.h index 07af8fcd6136..786e53027015 100644 --- a/config/examples/Velleman/K8400/Single-head/Configuration_adv.h +++ b/config/examples/Velleman/K8400/Single-head/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/WASP/PowerWASP/Configuration_adv.h b/config/examples/WASP/PowerWASP/Configuration_adv.h index 809abb271d77..94bfab154d26 100644 --- a/config/examples/WASP/PowerWASP/Configuration_adv.h +++ b/config/examples/WASP/PowerWASP/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Wanhao/Duplicator 6/Configuration_adv.h b/config/examples/Wanhao/Duplicator 6/Configuration_adv.h index 21733192ba6b..59c1ce323973 100644 --- a/config/examples/Wanhao/Duplicator 6/Configuration_adv.h +++ b/config/examples/Wanhao/Duplicator 6/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Wanhao/Duplicator i3 2.1/Configuration_adv.h b/config/examples/Wanhao/Duplicator i3 2.1/Configuration_adv.h index d59240d47b28..9d58b7411ebf 100644 --- a/config/examples/Wanhao/Duplicator i3 2.1/Configuration_adv.h +++ b/config/examples/Wanhao/Duplicator i3 2.1/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/Wanhao/Duplicator i3 Mini/Configuration_adv.h b/config/examples/Wanhao/Duplicator i3 Mini/Configuration_adv.h index 7fa89df75a75..12244dabc233 100644 --- a/config/examples/Wanhao/Duplicator i3 Mini/Configuration_adv.h +++ b/config/examples/Wanhao/Duplicator i3 Mini/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/Anycubic/Kossel/Configuration_adv.h b/config/examples/delta/Anycubic/Kossel/Configuration_adv.h index 0ff2007af816..84a440b4988a 100644 --- a/config/examples/delta/Anycubic/Kossel/Configuration_adv.h +++ b/config/examples/delta/Anycubic/Kossel/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/Dreammaker/Overlord/Configuration_adv.h b/config/examples/delta/Dreammaker/Overlord/Configuration_adv.h index 4e37d612695b..1739eb5f21b7 100644 --- a/config/examples/delta/Dreammaker/Overlord/Configuration_adv.h +++ b/config/examples/delta/Dreammaker/Overlord/Configuration_adv.h @@ -1773,7 +1773,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/Dreammaker/Overlord_Pro/Configuration_adv.h b/config/examples/delta/Dreammaker/Overlord_Pro/Configuration_adv.h index ae0c19461217..ee69e535db0f 100644 --- a/config/examples/delta/Dreammaker/Overlord_Pro/Configuration_adv.h +++ b/config/examples/delta/Dreammaker/Overlord_Pro/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h b/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h index 8700b7a8ca4f..352a13c38ad9 100644 --- a/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h +++ b/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/FLSUN/kossel/Configuration_adv.h b/config/examples/delta/FLSUN/kossel/Configuration_adv.h index 8700b7a8ca4f..352a13c38ad9 100644 --- a/config/examples/delta/FLSUN/kossel/Configuration_adv.h +++ b/config/examples/delta/FLSUN/kossel/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h b/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h index 3f5fc35abb00..9fc08c8e9a5a 100644 --- a/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h +++ b/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h b/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h index 888e948d7c75..801a55ba6729 100644 --- a/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h +++ b/config/examples/delta/Geeetech/Rostock 301/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/MKS/SBASE/Configuration_adv.h b/config/examples/delta/MKS/SBASE/Configuration_adv.h index d0eed756e0f4..76d991b45d0e 100644 --- a/config/examples/delta/MKS/SBASE/Configuration_adv.h +++ b/config/examples/delta/MKS/SBASE/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/Tevo Little Monster/Configuration_adv.h b/config/examples/delta/Tevo Little Monster/Configuration_adv.h index 14d291573a7a..991a135b2c65 100644 --- a/config/examples/delta/Tevo Little Monster/Configuration_adv.h +++ b/config/examples/delta/Tevo Little Monster/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/generic/Configuration_adv.h b/config/examples/delta/generic/Configuration_adv.h index 3f5fc35abb00..9fc08c8e9a5a 100644 --- a/config/examples/delta/generic/Configuration_adv.h +++ b/config/examples/delta/generic/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/kossel_mini/Configuration_adv.h b/config/examples/delta/kossel_mini/Configuration_adv.h index 3f5fc35abb00..9fc08c8e9a5a 100644 --- a/config/examples/delta/kossel_mini/Configuration_adv.h +++ b/config/examples/delta/kossel_mini/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/delta/kossel_xl/Configuration_adv.h b/config/examples/delta/kossel_xl/Configuration_adv.h index 94d1be3f058e..5350faf58944 100644 --- a/config/examples/delta/kossel_xl/Configuration_adv.h +++ b/config/examples/delta/kossel_xl/Configuration_adv.h @@ -1774,7 +1774,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/gCreate/gMax1.5+/Configuration_adv.h b/config/examples/gCreate/gMax1.5+/Configuration_adv.h index a7f48ffe6285..8748a41718e7 100644 --- a/config/examples/gCreate/gMax1.5+/Configuration_adv.h +++ b/config/examples/gCreate/gMax1.5+/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/makibox/Configuration_adv.h b/config/examples/makibox/Configuration_adv.h index 89cf726681fc..038a8479c764 100644 --- a/config/examples/makibox/Configuration_adv.h +++ b/config/examples/makibox/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/tvrrug/Round2/Configuration_adv.h b/config/examples/tvrrug/Round2/Configuration_adv.h index bb048056887b..3083f18c7d4f 100644 --- a/config/examples/tvrrug/Round2/Configuration_adv.h +++ b/config/examples/tvrrug/Round2/Configuration_adv.h @@ -1772,7 +1772,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/config/examples/wt150/Configuration_adv.h b/config/examples/wt150/Configuration_adv.h index 996debc84474..6b3131b9025d 100644 --- a/config/examples/wt150/Configuration_adv.h +++ b/config/examples/wt150/Configuration_adv.h @@ -1773,7 +1773,7 @@ * TMC26X Stepper Driver options * * The TMC26XStepper library is required for this stepper driver. - * https://github.com/trinamic/TMC26XStepper + * https://github.com/MarlinFirmware/TMC26XStepper */ #if HAS_DRIVER(TMC26X) diff --git a/platformio.ini b/platformio.ini index 18a644c7cdd2..0b987f072b58 100644 --- a/platformio.ini +++ b/platformio.ini @@ -22,9 +22,9 @@ default_envs = megaatmega2560 [common] default_src_filter = + - - + -extra_scripts = pre:buildroot/share/PlatformIO/scripts/common-cxxflags.py -build_flags = -fmax-errors=5 -g -D__MARLIN_FIRMWARE__ -fmerge-all-constants -lib_deps = +extra_scripts = pre:buildroot/share/PlatformIO/scripts/common-cxxflags.py +build_flags = -fmax-errors=5 -g -D__MARLIN_FIRMWARE__ -fmerge-all-constants +lib_deps = U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip LiquidCrystal@1.3.4 TMCStepper@>=0.5.2,<1.0.0 @@ -61,8 +61,8 @@ platform = atmelavr board = megaatmega2560 board_build.f_cpu = 16000000L lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 # @@ -73,8 +73,8 @@ platform = atmelavr board = megaatmega1280 board_build.f_cpu = 16000000L lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 # @@ -85,8 +85,8 @@ platform = atmelavr board = reprap_rambo board_build.f_cpu = 16000000L lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 # @@ -97,59 +97,59 @@ platform = atmelavr board = fysetc_f6_13 board_build.f_cpu = 16000000L lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 # # Sanguinololu (ATmega644p) # [env:sanguino_atmega644p] -platform = atmelavr -board = sanguino_atmega644p -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = atmelavr +board = sanguino_atmega644p +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # Sanguinololu (ATmega1284p) # [env:sanguino_atmega1284p] -platform = atmelavr -board = sanguino_atmega1284p -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = atmelavr +board = sanguino_atmega1284p +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # Melzi and clones (ATmega1284p) # [env:melzi] -platform = atmelavr -board = sanguino_atmega1284p -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 -build_flags = ${common.build_flags} -lib_ignore = TMCStepper -upload_speed = 57600 +platform = atmelavr +board = sanguino_atmega1284p +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 +build_flags = ${common.build_flags} +lib_ignore = TMCStepper +upload_speed = 57600 # # Melzi and clones (Optiboot bootloader) # [env:melzi_optiboot] -platform = atmelavr -board = sanguino_atmega1284p -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 -build_flags = ${common.build_flags} -lib_ignore = TMCStepper -upload_speed = 115200 +platform = atmelavr +board = sanguino_atmega1284p +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 +build_flags = ${common.build_flags} +lib_ignore = TMCStepper +upload_speed = 115200 # # AT90USB1286 boards using CDC bootloader @@ -159,12 +159,12 @@ upload_speed = 115200 # - TEENSYLU # [env:at90usb1286_cdc] -platform = teensy -board = at90usb1286 -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = teensy +board = at90usb1286 +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # AT90USB1286 boards using DFU bootloader @@ -173,12 +173,12 @@ monitor_speed = 250000 # - ? 5DPRINT ? # [env:at90usb1286_dfu] -platform = teensy -board = at90usb1286 -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = teensy +board = at90usb1286 +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # Due (Atmel SAM3X8E ARM Cortex-M3) @@ -187,24 +187,24 @@ monitor_speed = 250000 # - RADDS # [env:DUE] -platform = atmelsam -board = due -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = atmelsam +board = due +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 [env:DUE_USB] -platform = atmelsam -board = dueUSB -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = atmelsam +board = dueUSB +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 [env:DUE_debug] # Used when WATCHDOG_RESET_MANUAL is enabled -platform = atmelsam -board = due -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 -build_flags = ${common.build_flags} +platform = atmelsam +board = due +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 +build_flags = ${common.build_flags} -funwind-tables -mpoke-function-name @@ -221,7 +221,7 @@ build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC1768/include -IMarli lib_ldf_mode = off lib_compat_mode = strict extra_scripts = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 lib_deps = Servo LiquidCrystal @@ -240,7 +240,7 @@ build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC1768/include -IMarli lib_ldf_mode = off lib_compat_mode = strict extra_scripts = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 lib_deps = Servo LiquidCrystal @@ -259,7 +259,7 @@ platform_packages = tool-stm32duino build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 build_unflags = -std=gnu++11 -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -277,7 +277,7 @@ build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 -DDEBUG_LEVEL=0 -DHAVE_SW_SERIAL build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -303,7 +303,7 @@ build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -317,7 +317,7 @@ build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -332,7 +332,7 @@ build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512 build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -347,7 +347,7 @@ build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512 -DUSE_USB_COMPOSITE build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -363,7 +363,7 @@ platform_packages = tool-stm32duino build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 build_unflags = -std=gnu++11 -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -381,7 +381,7 @@ build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -397,7 +397,7 @@ build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_deps = ${common.lib_deps} SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip lib_ignore = Adafruit NeoPixel, SPI @@ -409,147 +409,147 @@ monitor_speed = 115200 # STM32F4 with STM32GENERIC # [env:STM32F4] -platform = ststm32 -board = disco_f407vg -build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED -lib_ignore = Adafruit NeoPixel, TMCStepper -src_filter = ${common.default_src_filter} + - -monitor_speed = 250000 +platform = ststm32 +board = disco_f407vg +build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED +lib_ignore = Adafruit NeoPixel, TMCStepper +build_src_filter = ${common.default_src_filter} + - +monitor_speed = 250000 # # STM32F7 with STM32GENERIC # [env:STM32F7] -platform = ststm32 -board = remram_v1 -build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED -lib_ignore = Adafruit NeoPixel, TMCStepper -src_filter = ${common.default_src_filter} + - -monitor_speed = 250000 +platform = ststm32 +board = remram_v1 +build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED +lib_ignore = Adafruit NeoPixel, TMCStepper +build_src_filter = ${common.default_src_filter} + - +monitor_speed = 250000 # # ARMED (STM32) # [env:ARMED] -platform = ststm32 -board = armed_v1 -build_flags = ${common.build_flags} +platform = ststm32 +board = armed_v1 +build_flags = ${common.build_flags} -DUSBCON -DUSBD_VID=0x0483 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="ARMED_V1"' -DUSBD_USE_CDC -O2 -ffreestanding -fsigned-char -fno-move-loop-invariants -fno-strict-aliasing -std=gnu11 -std=gnu++11 -IMarlin/src/HAL/HAL_STM32 -lib_ignore = Adafruit NeoPixel, SoftwareSerial -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +lib_ignore = Adafruit NeoPixel, SoftwareSerial +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # Longer 3D board in Alfawise U20 (STM32F103VET6) # [env:STM32F103VE_longer] -platform = ststm32 -board = genericSTM32F103VE -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py +platform = ststm32 +board = genericSTM32F103VE +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 -USERIAL_USB -DSTM32F1xx -DU20 -DTS_V12 -build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6 -extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel, LiquidTWI2, SPI -monitor_speed = 250000 +build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6 +extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel, LiquidTWI2, SPI +monitor_speed = 250000 # # MKS Robin (STM32F103ZET6) # [env:mks_robin] -platform = ststm32 -board = genericSTM32F103ZE -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py +platform = ststm32 +board = genericSTM32F103ZE +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY -build_unflags = -std=gnu++11 -extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin.py -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel, SPI -monitor_speed = 250000 +build_unflags = -std=gnu++11 +extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin.py +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel, SPI +monitor_speed = 250000 # # MKS Robin Lite/Lite2 (STM32F103RCT6) # [env:mks_robin_lite] -platform = ststm32 -board = genericSTM32F103RC -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py +platform = ststm32 +board = genericSTM32F103RC +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 -build_unflags = -std=gnu++11 -extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel, SPI -monitor_speed = 250000 +build_unflags = -std=gnu++11 +extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel, SPI +monitor_speed = 250000 # # MKS Robin Mini (STM32F103VET6) # [env:mks_robin_mini] -platform = ststm32 -board = genericSTM32F103VE -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py +platform = ststm32 +board = genericSTM32F103VE +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 -build_unflags = -std=gnu++11 -extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_mini.py -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel, SPI -monitor_speed = 250000 +build_unflags = -std=gnu++11 +extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_mini.py +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel, SPI +monitor_speed = 250000 # # MKS Robin Nano (STM32F103VET6) # [env:mks_robin_nano] -platform = ststm32 -board = genericSTM32F103VE -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py +platform = ststm32 +board = genericSTM32F103VE +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -std=gnu++14 -build_unflags = -std=gnu++11 -extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_nano.py -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel, SPI -monitor_speed = 250000 +build_unflags = -std=gnu++11 +extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_nano.py +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel, SPI +monitor_speed = 250000 # # JGAurora A5S A1 (STM32F103ZET6) # [env:jgaurora_a5s_a1] -platform = ststm32 -board = genericSTM32F103ZE -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py +platform = ststm32 +board = genericSTM32F103ZE +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY -build_unflags = -std=gnu++11 -extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel, SPI -monitor_speed = 250000 +build_unflags = -std=gnu++11 +extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel, SPI +monitor_speed = 250000 # # Malyan M200 (STM32F103CB) # [env:STM32F103CB_malyan] -platform = ststm32 -board = malyanM200 -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py -DMCU_STM32F103CB -D __STM32F1__=1 -std=c++1y -D MOTHERBOARD="BOARD_MALYAN_M200" -DSERIAL_USB -ffunction-sections -fdata-sections -Wl,--gc-sections +platform = ststm32 +board = malyanM200 +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py -DMCU_STM32F103CB -D __STM32F1__=1 -std=c++1y -D MOTHERBOARD="BOARD_MALYAN_M200" -DSERIAL_USB -ffunction-sections -fdata-sections -Wl,--gc-sections -DDEBUG_LEVEL=0 -D__MARLIN_FIRMWARE__ -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI # # Chitu boards like Tronxy X5s (STM32F103ZET6) # [env:chitu_f103] -platform = ststm32 -board = genericSTM32F103ZE -build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py +platform = ststm32 +board = genericSTM32F103ZE +build_flags = !python Marlin/src/HAL/HAL_STM32F1/build_flags.py ${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY -build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG= -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6 -extra_scripts = buildroot/share/PlatformIO/scripts/chitu_crypt.py -src_filter = ${common.default_src_filter} + -lib_ignore = Adafruit NeoPixel -monitor_speed = 250000 +build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG= -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6 +extra_scripts = buildroot/share/PlatformIO/scripts/chitu_crypt.py +build_src_filter = ${common.default_src_filter} + +lib_ignore = Adafruit NeoPixel +monitor_speed = 250000 # # FYSETC S6 (STM32F446VET6 ARM Cortex-M4) @@ -564,10 +564,10 @@ build_flags = ${common.build_flags} -DUSBCON -DUSBD_USE_CDC -DHAL_PCD_MODULE_ENABLED -DUSBD_VID=0x0483 '-DUSB_PRODUCT="FYSETC_S6"' build_unflags = -std=gnu++11 extra_scripts = buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + lib_ignore = Arduino-L6470 debug_tool = stlink -#upload_protocol = stlink +#upload_protocol = stlink upload_protocol = serial monitor_speed = 250000 @@ -587,7 +587,7 @@ build_flags = ${common.build_flags} build_unflags = -std=gnu++11 extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 # @@ -612,101 +612,101 @@ lib_deps = LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/dev.zip lib_ignore = SoftwareSerial, SoftwareSerialM -src_filter = ${common.default_src_filter} + +build_src_filter = ${common.default_src_filter} + monitor_speed = 250000 # # Bigtreetech SKR BTT002 (STM32F407VET6 ARM Cortex-M4) # [env:BIGTREE_BTT002] -platform = ststm32@5.6.0 -board = BigTree_Btt002 -build_flags = ${common.build_flags} +platform = ststm32@5.6.0 +board = BigTree_Btt002 +build_flags = ${common.build_flags} -DUSBCON -DUSBD_USE_CDC -DUSBD_VID=0x0483 -DUSB_PRODUCT=\"STM32F407VE\" -DTARGET_STM32F4 -DSTM32F407_5VX -DVECT_TAB_OFFSET=0x8000 -DHAVE_HWSERIAL2 -DHAVE_HWSERIAL3 -DPIN_SERIAL2_RX=PD_6 -DPIN_SERIAL2_TX=PD_5 -build_unflags = -std=gnu++11 -extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py -lib_ignore = Adafruit NeoPixel, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +build_unflags = -std=gnu++11 +extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py +lib_ignore = Adafruit NeoPixel, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # Teensy 3.1 / 3.2 (ARM Cortex-M4) # [env:teensy31] -platform = teensy -board = teensy31 -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -lib_ignore = Adafruit NeoPixel -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = teensy +board = teensy31 +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +lib_ignore = Adafruit NeoPixel +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # Teensy 3.5 / 3.6 (ARM Cortex-M4) # [env:teensy35] -platform = teensy -board = teensy35 -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -lib_ignore = Adafruit NeoPixel -src_filter = ${common.default_src_filter} + -monitor_speed = 250000 +platform = teensy +board = teensy35 +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +lib_ignore = Adafruit NeoPixel +build_src_filter = ${common.default_src_filter} + +monitor_speed = 250000 # # Espressif ESP32 # [env:esp32] -platform = espressif32 -board = esp32dev -upload_speed = 115200 -monitor_speed = 115200 -upload_port = /dev/ttyUSB0 -lib_deps = +platform = espressif32 +board = esp32dev +upload_speed = 115200 +monitor_speed = 115200 +upload_port = /dev/ttyUSB0 +lib_deps = AsyncTCP=https://github.com/me-no-dev/AsyncTCP/archive/master.zip ESPAsyncWebServer=https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip -lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, SailfishRGB_LED -src_filter = ${common.default_src_filter} + +lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, SailfishRGB_LED +build_src_filter = ${common.default_src_filter} + # # Native # No supported Arduino libraries, base Marlin only # [env:linux_native] -platform = native -framework = -build_flags = -D__PLAT_LINUX__ -std=gnu++17 -ggdb -g -lrt -lpthread -D__MARLIN_FIRMWARE__ -Wno-expansion-to-defined -src_build_flags = -Wall -IMarlin/src/HAL/HAL_LINUX/include -build_unflags = -Wall -lib_ldf_mode = off -lib_deps = -extra_scripts = -src_filter = ${common.default_src_filter} + +platform = native +framework = +build_flags = -D__PLAT_LINUX__ -std=gnu++17 -ggdb -g -lrt -lpthread -D__MARLIN_FIRMWARE__ -Wno-expansion-to-defined +src_build_flags = -Wall -IMarlin/src/HAL/HAL_LINUX/include +build_unflags = -Wall +lib_ldf_mode = off +lib_deps = +extra_scripts = +build_src_filter = ${common.default_src_filter} + # # Adafruit Grand Central M4 (Atmel SAMD51P20A ARM Cortex-M4) # [env:SAMD51_grandcentral_m4] -platform = atmelsam -board = adafruit_grandcentral_m4 -build_flags = ${common.build_flags} -std=gnu++17 -extra_scripts = ${common.extra_scripts} -build_unflags = -std=gnu++11 -src_filter = ${common.default_src_filter} + -debug_tool = jlink +platform = atmelsam +board = adafruit_grandcentral_m4 +build_flags = ${common.build_flags} -std=gnu++17 +extra_scripts = ${common.extra_scripts} +build_unflags = -std=gnu++11 +build_src_filter = ${common.default_src_filter} + +debug_tool = jlink # # Just print the dependency tree # [env:include_tree] -platform = atmelavr -board = megaatmega2560 -build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__ -lib_deps = ${common.lib_deps} - TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip -src_filter = + +platform = atmelavr +board = megaatmega2560 +build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__ +lib_deps = ${common.lib_deps} + TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip +build_src_filter = +