Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
30245b47ad | ||
|
88e43c1ba3 | ||
|
49bab19bb5 |
112
.gitignore
vendored
112
.gitignore
vendored
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Marlin 3D Printer Firmware
|
# Marlin 3D Printer Firmware
|
||||||
# Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
# Copyright (c) 2023 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
||||||
#
|
#
|
||||||
# Based on Sprinter and grbl.
|
# Based on Sprinter and grbl.
|
||||||
# Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
# Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
||||||
@@ -16,37 +16,26 @@
|
|||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
|
|
||||||
# Our automatic versioning scheme generates the following file
|
# Generated files
|
||||||
# NEVER put it in the repository
|
|
||||||
_Version.h
|
_Version.h
|
||||||
|
bdf2u8g.exe
|
||||||
|
genpages.exe
|
||||||
|
marlin_config.json
|
||||||
|
mczip.h
|
||||||
|
language*.csv
|
||||||
|
out-csv/
|
||||||
|
out-language/
|
||||||
|
*.gen
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
#
|
|
||||||
# OS
|
# OS
|
||||||
#
|
|
||||||
applet/
|
applet/
|
||||||
*.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
#
|
# Compiled C++ Object files
|
||||||
# Misc
|
|
||||||
#
|
|
||||||
*~
|
|
||||||
*.orig
|
|
||||||
*.rej
|
|
||||||
*.bak
|
|
||||||
*.idea
|
|
||||||
*.s
|
|
||||||
*.i
|
|
||||||
*.ii
|
|
||||||
*.swp
|
|
||||||
tags
|
|
||||||
|
|
||||||
#
|
|
||||||
# C++
|
|
||||||
#
|
|
||||||
# Compiled Object files
|
|
||||||
*.slo
|
*.slo
|
||||||
*.lo
|
*.lo
|
||||||
*.o
|
*.o
|
||||||
@@ -77,11 +66,7 @@ tags
|
|||||||
*.out
|
*.out
|
||||||
*.app
|
*.app
|
||||||
|
|
||||||
|
# Compiled C Object files
|
||||||
#
|
|
||||||
# C
|
|
||||||
#
|
|
||||||
# Object files
|
|
||||||
*.o
|
*.o
|
||||||
*.ko
|
*.ko
|
||||||
*.obj
|
*.obj
|
||||||
@@ -123,33 +108,10 @@ tags
|
|||||||
.gcc-flags.json
|
.gcc-flags.json
|
||||||
/lib/
|
/lib/
|
||||||
|
|
||||||
# Workaround for Deviot+platformio quirks
|
|
||||||
Marlin/lib
|
|
||||||
Marlin/platformio.ini
|
|
||||||
Marlin/*/platformio.ini
|
|
||||||
Marlin/*/*/platformio.ini
|
|
||||||
Marlin/*/*/*/platformio.ini
|
|
||||||
Marlin/*/*/*/*/platformio.ini
|
|
||||||
Marlin/.travis.yml
|
|
||||||
Marlin/*/.travis.yml
|
|
||||||
Marlin/*/*/.travis.yml
|
|
||||||
Marlin/*/*/*/.travis.yml
|
|
||||||
Marlin/*/*/*/*/.travis.yml
|
|
||||||
Marlin/.gitignore
|
|
||||||
Marlin/*/.gitignore
|
|
||||||
Marlin/*/*/.gitignore
|
|
||||||
Marlin/*/*/*/.gitignore
|
|
||||||
Marlin/*/*/*/*/.gitignore
|
|
||||||
Marlin/readme.txt
|
|
||||||
Marlin/*/readme.txt
|
|
||||||
Marlin/*/*/readme.txt
|
|
||||||
Marlin/*/*/*/readme.txt
|
|
||||||
Marlin/*/*/*/*/readme.txt
|
|
||||||
|
|
||||||
# Secure Credentials
|
# Secure Credentials
|
||||||
Configuration_Secure.h
|
Configuration_Secure.h
|
||||||
|
|
||||||
#Visual Studio
|
# Visual Studio
|
||||||
*.sln
|
*.sln
|
||||||
*.vcxproj
|
*.vcxproj
|
||||||
*.vcxproj.user
|
*.vcxproj.user
|
||||||
@@ -160,27 +122,49 @@ __vm/
|
|||||||
.vs/
|
.vs/
|
||||||
vc-fileutils.settings
|
vc-fileutils.settings
|
||||||
|
|
||||||
#Visual Studio Code
|
# Visual Studio Code
|
||||||
.vscode
|
.vscode/*
|
||||||
.vscode/.browse.c_cpp.db*
|
!.vscode/extensions.json
|
||||||
.vscode/c_cpp_properties.json
|
|
||||||
.vscode/launch.json
|
|
||||||
.vscode/*.db
|
|
||||||
|
|
||||||
#cmake
|
# Simulation files
|
||||||
|
imgui.ini
|
||||||
|
eeprom.dat
|
||||||
|
spi_flash.bin
|
||||||
|
fs.img
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
buildroot/share/cmake/*
|
||||||
CMakeLists.txt
|
CMakeLists.txt
|
||||||
|
!buildroot/share/cmake/CMakeLists.txt
|
||||||
src/CMakeLists.txt
|
src/CMakeLists.txt
|
||||||
CMakeListsPrivate.txt
|
CMakeListsPrivate.txt
|
||||||
|
build/
|
||||||
|
|
||||||
#CLion
|
# CLion
|
||||||
cmake-build-*
|
cmake-build-*
|
||||||
|
|
||||||
#Eclipse
|
# Eclipse
|
||||||
.project
|
.project
|
||||||
.cproject
|
.cproject
|
||||||
.pydevproject
|
.pydevproject
|
||||||
.settings
|
.settings
|
||||||
.classpath
|
.classpath
|
||||||
|
|
||||||
#Python
|
# Python
|
||||||
__pycache__
|
__pycache__
|
||||||
|
|
||||||
|
# IOLogger logs
|
||||||
|
*_log.csv
|
||||||
|
|
||||||
|
# Misc.
|
||||||
|
*~
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
*.bak
|
||||||
|
*.idea
|
||||||
|
*.i
|
||||||
|
*.ii
|
||||||
|
*.swp
|
||||||
|
tags
|
||||||
|
*.logs
|
||||||
|
*.bak
|
||||||
|
@@ -1919,7 +1919,7 @@
|
|||||||
* TMC26X Stepper Driver options
|
* TMC26X Stepper Driver options
|
||||||
*
|
*
|
||||||
* The TMC26XStepper library is required for this stepper driver.
|
* The TMC26XStepper library is required for this stepper driver.
|
||||||
* https://github.com/trinamic/TMC26XStepper
|
* https://github.com/MarlinFirmware/TMC26XStepper
|
||||||
*/
|
*/
|
||||||
#if HAS_DRIVER(TMC26X)
|
#if HAS_DRIVER(TMC26X)
|
||||||
|
|
||||||
|
@@ -28,7 +28,7 @@
|
|||||||
/**
|
/**
|
||||||
* Marlin release version identifier
|
* Marlin release version identifier
|
||||||
*/
|
*/
|
||||||
//#define SHORT_BUILD_VERSION "2.0.5.4"
|
//#define SHORT_BUILD_VERSION "2.0.5.5"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Verbose version identifier which should contain a reference to the location
|
* Verbose version identifier which should contain a reference to the location
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
* here we define this default string as the date where the latest release
|
* here we define this default string as the date where the latest release
|
||||||
* version was tagged.
|
* version was tagged.
|
||||||
*/
|
*/
|
||||||
//#define STRING_DISTRIBUTION_DATE "2020-07-09"
|
//#define STRING_DISTRIBUTION_DATE "2023-07-18"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines a generic printer name to be output to the LCD after booting Marlin.
|
* Defines a generic printer name to be output to the LCD after booting Marlin.
|
||||||
|
@@ -25,7 +25,7 @@
|
|||||||
* Release version. Leave the Marlin version or apply a custom scheme.
|
* Release version. Leave the Marlin version or apply a custom scheme.
|
||||||
*/
|
*/
|
||||||
#ifndef SHORT_BUILD_VERSION
|
#ifndef SHORT_BUILD_VERSION
|
||||||
#define SHORT_BUILD_VERSION "2.0.5.4"
|
#define SHORT_BUILD_VERSION "2.0.5.5"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
* version was tagged.
|
* version was tagged.
|
||||||
*/
|
*/
|
||||||
#ifndef STRING_DISTRIBUTION_DATE
|
#ifndef STRING_DISTRIBUTION_DATE
|
||||||
#define STRING_DISTRIBUTION_DATE "2020-07-09"
|
#define STRING_DISTRIBUTION_DATE "2023-07-18"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -1,16 +1,13 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
STM32_FLASH_SIZE = 256
|
STM32_FLASH_SIZE = 256
|
||||||
|
|
||||||
for define in env['CPPDEFINES']:
|
for define in env['CPPDEFINES']:
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
if define[0] == "STM32_FLASH_SIZE":
|
if define[0] == "STM32_FLASH_SIZE":
|
||||||
STM32_FLASH_SIZE = define[1]
|
STM32_FLASH_SIZE = define[1]
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08007000
|
# 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")
|
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"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
|
@@ -3,8 +3,8 @@ from os.path import expandvars
|
|||||||
Import("env", "projenv")
|
Import("env", "projenv")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08002000
|
# Relocate firmware from 0x08000000 to 0x08002000
|
||||||
#env['CPPDEFINES'].remove(("VECT_TAB_ADDR", 134217728))
|
#import marlin
|
||||||
#env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08010000"))
|
#marlin.relocate_firmware("0x08001000")
|
||||||
|
|
||||||
# Custom HEX from ELF
|
# Custom HEX from ELF
|
||||||
env.AddPostAction(
|
env.AddPostAction(
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08007000
|
# 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")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/STM32F103RE_SKR_E3_DIP.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08010000
|
# Relocate firmware from 0x08000000 to 0x08010000
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08010000")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08010000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/STM32F103VE_longer.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/STM32F103VE_longer.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
@@ -14,7 +11,6 @@ for i, flag in enumerate(env["LINKFLAGS"]):
|
|||||||
elif flag == "-T":
|
elif flag == "-T":
|
||||||
env["LINKFLAGS"][i + 1] = custom_ld_script
|
env["LINKFLAGS"][i + 1] = custom_ld_script
|
||||||
|
|
||||||
|
|
||||||
# Rename ${PROGNAME}.bin and save it as 'project.bin' (No encryption on the Longer3D)
|
# Rename ${PROGNAME}.bin and save it as 'project.bin' (No encryption on the Longer3D)
|
||||||
def encrypt(source, target, env):
|
def encrypt(source, target, env):
|
||||||
firmware = open(target[0].path, "rb")
|
firmware = open(target[0].path, "rb")
|
||||||
|
@@ -1,12 +1,8 @@
|
|||||||
import os
|
import os,struct,marlin
|
||||||
import struct
|
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08008800
|
# Relocate firmware from 0x08000000 to 0x08008800
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08008800")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x8008800"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/chitu_f103.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/chitu_f103.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
@@ -15,7 +11,6 @@ for i, flag in enumerate(env["LINKFLAGS"]):
|
|||||||
elif flag == "-T":
|
elif flag == "-T":
|
||||||
env["LINKFLAGS"][i + 1] = custom_ld_script
|
env["LINKFLAGS"][i + 1] = custom_ld_script
|
||||||
|
|
||||||
|
|
||||||
def calculate_crc(contents, seed):
|
def calculate_crc(contents, seed):
|
||||||
accumulating_xor_value = seed;
|
accumulating_xor_value = seed;
|
||||||
|
|
||||||
|
@@ -33,8 +33,8 @@ for file_name in os.listdir(source_dir):
|
|||||||
shutil.copy(full_file_name, variant_dir)
|
shutil.copy(full_file_name, variant_dir)
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08002000
|
# Relocate firmware from 0x08000000 to 0x08002000
|
||||||
#env['CPPDEFINES'].remove(("VECT_TAB_ADDR", 134217728))
|
#import marlin
|
||||||
#env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08010000"))
|
#marlin.relocate_firmware("0x08010000")
|
||||||
#env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/fysetc_aio_ii.ld")
|
#env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/fysetc_aio_ii.ld")
|
||||||
|
|
||||||
# Custom HEX from ELF
|
# Custom HEX from ELF
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x0800A000
|
# Relocate firmware from 0x08000000 to 0x0800A000
|
||||||
env['CPPDEFINES'].remove(("VECT_TAB_ADDR", "0x8000000"))
|
marlin.relocate_firmware("0x0800A000")
|
||||||
#alternatively, for STSTM <=5.1.0 use line below
|
|
||||||
#env['CPPDEFINES'].remove(("VECT_TAB_ADDR", 134217728))
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x0800A000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/jgaurora_a5s_a1.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/jgaurora_a5s_a1.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
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')
|
#os.rename(target[0].dir.path+'/firmware_with_bootloader.bin', target[0].dir.path+'/firmware.bin')
|
||||||
|
|
||||||
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", addboot);
|
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", addboot);
|
||||||
|
|
||||||
|
17
buildroot/share/PlatformIO/scripts/marlin.py
Normal file
17
buildroot/share/PlatformIO/scripts/marlin.py
Normal file
@@ -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)
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08007000
|
# Relocate firmware from 0x08000000 to 0x08007000
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08007000")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08005000
|
# Relocate firmware from 0x08000000 to 0x08005000
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08005000")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08005000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_lite.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_lite.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
@@ -14,7 +11,6 @@ for i, flag in enumerate(env["LINKFLAGS"]):
|
|||||||
elif flag == "-T":
|
elif flag == "-T":
|
||||||
env["LINKFLAGS"][i + 1] = custom_ld_script
|
env["LINKFLAGS"][i + 1] = custom_ld_script
|
||||||
|
|
||||||
|
|
||||||
# Encrypt ${PROGNAME}.bin and save it as 'mksLite.bin'
|
# Encrypt ${PROGNAME}.bin and save it as 'mksLite.bin'
|
||||||
def encrypt(source, target, env):
|
def encrypt(source, target, env):
|
||||||
import sys
|
import sys
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08005000
|
# Relocate firmware from 0x08000000 to 0x08005000
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08005000")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08005000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_lite.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_lite.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
@@ -14,7 +11,6 @@ for i, flag in enumerate(env["LINKFLAGS"]):
|
|||||||
elif flag == "-T":
|
elif flag == "-T":
|
||||||
env["LINKFLAGS"][i + 1] = custom_ld_script
|
env["LINKFLAGS"][i + 1] = custom_ld_script
|
||||||
|
|
||||||
|
|
||||||
# Encrypt ${PROGNAME}.bin and save it as 'mksLite.bin'
|
# Encrypt ${PROGNAME}.bin and save it as 'mksLite.bin'
|
||||||
def encrypt(source, target, env):
|
def encrypt(source, target, env):
|
||||||
import sys
|
import sys
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08007000
|
# Relocate firmware from 0x08000000 to 0x08007000
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08007000")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_mini.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_mini.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
@@ -14,7 +11,6 @@ for i, flag in enumerate(env["LINKFLAGS"]):
|
|||||||
elif flag == "-T":
|
elif flag == "-T":
|
||||||
env["LINKFLAGS"][i + 1] = custom_ld_script
|
env["LINKFLAGS"][i + 1] = custom_ld_script
|
||||||
|
|
||||||
|
|
||||||
# Encrypt ${PROGNAME}.bin and save it as 'Robin_mini.bin'
|
# Encrypt ${PROGNAME}.bin and save it as 'Robin_mini.bin'
|
||||||
def encrypt(source, target, env):
|
def encrypt(source, target, env):
|
||||||
import sys
|
import sys
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08007000
|
# Relocate firmware from 0x08000000 to 0x08007000
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08007000")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_nano.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_nano.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
@@ -14,7 +11,6 @@ for i, flag in enumerate(env["LINKFLAGS"]):
|
|||||||
elif flag == "-T":
|
elif flag == "-T":
|
||||||
env["LINKFLAGS"][i + 1] = custom_ld_script
|
env["LINKFLAGS"][i + 1] = custom_ld_script
|
||||||
|
|
||||||
|
|
||||||
# Encrypt ${PROGNAME}.bin and save it as 'Robin_nano.bin'
|
# Encrypt ${PROGNAME}.bin and save it as 'Robin_nano.bin'
|
||||||
def encrypt(source, target, env):
|
def encrypt(source, target, env):
|
||||||
import sys
|
import sys
|
||||||
|
@@ -1,11 +1,8 @@
|
|||||||
import os
|
import os, marlin
|
||||||
Import("env")
|
Import("env")
|
||||||
|
|
||||||
# Relocate firmware from 0x08000000 to 0x08007000
|
# Relocate firmware from 0x08000000 to 0x08007000
|
||||||
for define in env['CPPDEFINES']:
|
marlin.relocate_firmware("0x08007000")
|
||||||
if define[0] == "VECT_TAB_ADDR":
|
|
||||||
env['CPPDEFINES'].remove(define)
|
|
||||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))
|
|
||||||
|
|
||||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_pro.ld")
|
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/mks_robin_pro.ld")
|
||||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||||
|
446
platformio.ini
446
platformio.ini
@@ -62,8 +62,8 @@ platform = atmelavr
|
|||||||
board = megaatmega2560
|
board = megaatmega2560
|
||||||
board_build.f_cpu = 16000000L
|
board_build.f_cpu = 16000000L
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# ATmega1280
|
# ATmega1280
|
||||||
@@ -73,8 +73,8 @@ platform = atmelavr
|
|||||||
board = megaatmega1280
|
board = megaatmega1280
|
||||||
board_build.f_cpu = 16000000L
|
board_build.f_cpu = 16000000L
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# RAMBo
|
# RAMBo
|
||||||
@@ -84,8 +84,8 @@ platform = atmelavr
|
|||||||
board = reprap_rambo
|
board = reprap_rambo
|
||||||
board_build.f_cpu = 16000000L
|
board_build.f_cpu = 16000000L
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# FYSETC F6 V1.3
|
# FYSETC F6 V1.3
|
||||||
@@ -95,8 +95,8 @@ platform = atmelavr
|
|||||||
board = fysetc_f6_13
|
board = fysetc_f6_13
|
||||||
board_build.f_cpu = 16000000L
|
board_build.f_cpu = 16000000L
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# FYSETC F6 V1.4
|
# FYSETC F6 V1.4
|
||||||
@@ -106,18 +106,18 @@ platform = atmelavr
|
|||||||
board = fysetc_f6_14
|
board = fysetc_f6_14
|
||||||
board_build.f_cpu = 16000000L
|
board_build.f_cpu = 16000000L
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Sanguinololu (ATmega644p)
|
# Sanguinololu (ATmega644p)
|
||||||
#
|
#
|
||||||
[env:sanguino644p]
|
[env:sanguino644p]
|
||||||
platform = atmelavr
|
platform = atmelavr
|
||||||
board = sanguino_atmega644p
|
board = sanguino_atmega644p
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Sanguinololu (ATmega1284p)
|
# Sanguinololu (ATmega1284p)
|
||||||
@@ -126,32 +126,32 @@ src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
|||||||
platform = atmelavr
|
platform = atmelavr
|
||||||
board = sanguino_atmega1284p
|
board = sanguino_atmega1284p
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Melzi and clones (ATmega1284p)
|
# Melzi and clones (ATmega1284p)
|
||||||
#
|
#
|
||||||
[env:melzi]
|
[env:melzi]
|
||||||
platform = atmelavr
|
platform = atmelavr
|
||||||
board = sanguino_atmega1284p
|
board = sanguino_atmega1284p
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
lib_ignore = TMCStepper
|
lib_ignore = TMCStepper
|
||||||
upload_speed = 57600
|
upload_speed = 57600
|
||||||
|
|
||||||
#
|
#
|
||||||
# Melzi and clones (Optiboot bootloader)
|
# Melzi and clones (Optiboot bootloader)
|
||||||
#
|
#
|
||||||
[env:melzi_optiboot]
|
[env:melzi_optiboot]
|
||||||
platform = atmelavr
|
platform = atmelavr
|
||||||
board = sanguino_atmega1284p
|
board = sanguino_atmega1284p
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
lib_ignore = TMCStepper
|
lib_ignore = TMCStepper
|
||||||
upload_speed = 115200
|
upload_speed = 115200
|
||||||
|
|
||||||
#
|
#
|
||||||
# AT90USB1286 boards using CDC bootloader
|
# AT90USB1286 boards using CDC bootloader
|
||||||
@@ -161,12 +161,12 @@ upload_speed = 115200
|
|||||||
# - TEENSYLU
|
# - TEENSYLU
|
||||||
#
|
#
|
||||||
[env:at90usb1286_cdc]
|
[env:at90usb1286_cdc]
|
||||||
platform = teensy
|
platform = teensy
|
||||||
board = at90usb1286
|
board = at90usb1286
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
lib_ignore = TMCStepper
|
lib_ignore = TMCStepper
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# AT90USB1286 boards using DFU bootloader
|
# AT90USB1286 boards using DFU bootloader
|
||||||
@@ -175,11 +175,11 @@ src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
|||||||
# - ? 5DPRINT ?
|
# - ? 5DPRINT ?
|
||||||
#
|
#
|
||||||
[env:at90usb1286_dfu]
|
[env:at90usb1286_dfu]
|
||||||
platform = teensy
|
platform = teensy
|
||||||
board = at90usb1286
|
board = at90usb1286
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
lib_ignore = TMCStepper
|
lib_ignore = TMCStepper
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Due (Atmel SAM3X8E ARM Cortex-M3)
|
# Due (Atmel SAM3X8E ARM Cortex-M3)
|
||||||
@@ -188,21 +188,21 @@ src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
|||||||
# - RADDS
|
# - RADDS
|
||||||
#
|
#
|
||||||
[env:DUE]
|
[env:DUE]
|
||||||
platform = atmelsam
|
platform = atmelsam
|
||||||
board = due
|
board = due
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/DUE>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/DUE>
|
||||||
|
|
||||||
[env:DUE_USB]
|
[env:DUE_USB]
|
||||||
platform = atmelsam
|
platform = atmelsam
|
||||||
board = dueUSB
|
board = dueUSB
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/DUE>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/DUE>
|
||||||
|
|
||||||
[env:DUE_debug]
|
[env:DUE_debug]
|
||||||
# Used when WATCHDOG_RESET_MANUAL is enabled
|
# Used when WATCHDOG_RESET_MANUAL is enabled
|
||||||
platform = atmelsam
|
platform = atmelsam
|
||||||
board = due
|
board = due
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/DUE>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/DUE>
|
||||||
build_flags = ${common.build_flags}
|
build_flags = ${common.build_flags}
|
||||||
-funwind-tables
|
-funwind-tables
|
||||||
-mpoke-function-name
|
-mpoke-function-name
|
||||||
|
|
||||||
@@ -219,7 +219,7 @@ build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/LPC1768/include -IMarlin/sr
|
|||||||
lib_ldf_mode = off
|
lib_ldf_mode = off
|
||||||
lib_compat_mode = strict
|
lib_compat_mode = strict
|
||||||
extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
|
extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
|
||||||
lib_deps = Servo
|
lib_deps = Servo
|
||||||
LiquidCrystal
|
LiquidCrystal
|
||||||
U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
|
U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
|
||||||
@@ -237,7 +237,7 @@ build_flags = -DU8G_HAL_LINKS -IMarlin/src/HAL/LPC1768/include -IMarlin/sr
|
|||||||
lib_ldf_mode = off
|
lib_ldf_mode = off
|
||||||
lib_compat_mode = strict
|
lib_compat_mode = strict
|
||||||
extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
|
extra_scripts = Marlin/src/HAL/LPC1768/upload_extra_script.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/LPC1768>
|
||||||
lib_deps = Servo
|
lib_deps = Servo
|
||||||
LiquidCrystal
|
LiquidCrystal
|
||||||
U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
|
U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
|
||||||
@@ -255,7 +255,7 @@ platform_packages = tool-stm32duino
|
|||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14
|
${common.build_flags} -std=gnu++14
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
@@ -273,7 +273,7 @@ build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
|||||||
${common.build_flags} -std=gnu++14 -DDEBUG_LEVEL=0 -DHAVE_SW_SERIAL
|
${common.build_flags} -std=gnu++14 -DDEBUG_LEVEL=0 -DHAVE_SW_SERIAL
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
@@ -298,7 +298,7 @@ build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
|||||||
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
|
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
USBComposite for STM32F1@==0.91
|
USBComposite for STM32F1@==0.91
|
||||||
@@ -313,7 +313,7 @@ build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
|||||||
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
|
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
USBComposite for STM32F1@==0.91
|
USBComposite for STM32F1@==0.91
|
||||||
@@ -323,13 +323,13 @@ monitor_speed = 115200
|
|||||||
[env:STM32F103RC_btt_512K]
|
[env:STM32F103RC_btt_512K]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103RC
|
board = genericSTM32F103RC
|
||||||
board_upload.maximum_size=524288
|
board_upload.maximum_size = 524288
|
||||||
platform_packages = tool-stm32duino
|
platform_packages = tool-stm32duino
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512
|
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_FLASH_SIZE=512
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
USBComposite for STM32F1@==0.91
|
USBComposite for STM32F1@==0.91
|
||||||
@@ -339,13 +339,13 @@ monitor_speed = 115200
|
|||||||
[env:STM32F103RC_btt_512K_USB]
|
[env:STM32F103RC_btt_512K_USB]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103RC
|
board = genericSTM32F103RC
|
||||||
board_upload.maximum_size=524288
|
board_upload.maximum_size = 524288
|
||||||
platform_packages = tool-stm32duino
|
platform_packages = tool-stm32duino
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/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
|
${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
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RC_SKR_MINI.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
USBComposite for STM32F1@==0.91
|
USBComposite for STM32F1@==0.91
|
||||||
@@ -362,7 +362,7 @@ platform_packages = tool-stm32duino
|
|||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14
|
${common.build_flags} -std=gnu++14
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
@@ -380,7 +380,7 @@ build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
|||||||
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
|
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
@@ -396,7 +396,7 @@ build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
|||||||
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
|
${common.build_flags} -DDEBUG_LEVEL=0 -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DUSE_USB_COMPOSITE
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
@@ -408,185 +408,185 @@ monitor_speed = 115200
|
|||||||
# STM32F4 with STM32GENERIC
|
# STM32F4 with STM32GENERIC
|
||||||
#
|
#
|
||||||
[env:STM32F4]
|
[env:STM32F4]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = disco_f407vg
|
board = disco_f407vg
|
||||||
build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
|
build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F4 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
|
||||||
lib_ignore = Adafruit NeoPixel, TMCStepper
|
lib_ignore = Adafruit NeoPixel, TMCStepper
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
|
||||||
|
|
||||||
#
|
#
|
||||||
# STM32F7 with STM32GENERIC
|
# STM32F7 with STM32GENERIC
|
||||||
#
|
#
|
||||||
[env:STM32F7]
|
[env:STM32F7]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = remram_v1
|
board = remram_v1
|
||||||
build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
|
build_flags = ${common.build_flags} -DUSE_STM32GENERIC -DSTM32GENERIC -DSTM32F7 -DMENU_USB_SERIAL -DMENU_SERIAL=SerialUSB -DHAL_IWDG_MODULE_ENABLED
|
||||||
lib_ignore = Adafruit NeoPixel, TMCStepper
|
lib_ignore = Adafruit NeoPixel, TMCStepper
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F4>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F4>
|
||||||
|
|
||||||
#
|
#
|
||||||
# ARMED (STM32)
|
# ARMED (STM32)
|
||||||
#
|
#
|
||||||
[env:ARMED]
|
[env:ARMED]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = armed_v1
|
board = armed_v1
|
||||||
build_flags = ${common.build_flags}
|
build_flags = ${common.build_flags}
|
||||||
-DUSBCON -DUSBD_VID=0x0483 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="ARMED_V1"' -DUSBD_USE_CDC
|
-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
|
-O2 -ffreestanding -fsigned-char -fno-move-loop-invariants -fno-strict-aliasing -std=gnu11 -std=gnu++11
|
||||||
-IMarlin/src/HAL/STM32
|
-IMarlin/src/HAL/STM32
|
||||||
lib_ignore = Adafruit NeoPixel, SoftwareSerial
|
lib_ignore = Adafruit NeoPixel, SoftwareSerial
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Geeetech GTM32 (STM32F103VET6)
|
# Geeetech GTM32 (STM32F103VET6)
|
||||||
#
|
#
|
||||||
[env:STM32F103VE_GTM32]
|
[env:STM32F103VE_GTM32]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103VE
|
board = genericSTM32F103VE
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++14 -MMD -ffunction-sections -fdata-sections -nostdlib
|
${common.build_flags} -DDEBUG_LEVEL=DEBUG_NONE -std=gnu++14 -MMD -ffunction-sections -fdata-sections -nostdlib
|
||||||
-DBOARD_generic_stm32f103v -DARDUINO_GENERIC_STM32F103V -DARDUINO_ARCH_STM32F1
|
-DBOARD_generic_stm32f103v -DARDUINO_GENERIC_STM32F103V -DARDUINO_ARCH_STM32F1
|
||||||
-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
|
-DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DVECT_TAB_ADDR=0x8000000 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
upload_protocol = serial
|
upload_protocol = serial
|
||||||
|
|
||||||
#
|
#
|
||||||
# Longer 3D board in Alfawise U20 (STM32F103VET6)
|
# Longer 3D board in Alfawise U20 (STM32F103VET6)
|
||||||
#
|
#
|
||||||
[env:STM32F103VE_longer]
|
[env:STM32F103VE_longer]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103VE
|
board = genericSTM32F103VE
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14 -USERIAL_USB
|
${common.build_flags} -std=gnu++14 -USERIAL_USB
|
||||||
-DSTM32F1xx -DU20 -DTS_V12
|
-DSTM32F1xx -DU20 -DTS_V12
|
||||||
build_unflags = -std=gnu++11 -DCONFIG_MAPLE_MINI_NO_DISABLE_DEBUG=1 -DERROR_LED_PORT=GPIOE -DERROR_LED_PIN=6
|
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
|
extra_scripts = buildroot/share/PlatformIO/scripts/STM32F103VE_longer.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_ignore = Adafruit NeoPixel, LiquidTWI2, SPI
|
lib_ignore = Adafruit NeoPixel, LiquidTWI2, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# MKS Robin Mini (STM32F103VET6)
|
# MKS Robin Mini (STM32F103VET6)
|
||||||
#
|
#
|
||||||
[env:mks_robin_mini]
|
[env:mks_robin_mini]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103VE
|
board = genericSTM32F103VE
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14
|
${common.build_flags} -std=gnu++14
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_mini.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_mini.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# MKS Robin Nano (STM32F103VET6)
|
# MKS Robin Nano (STM32F103VET6)
|
||||||
#
|
#
|
||||||
[env:mks_robin_nano]
|
[env:mks_robin_nano]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103VE
|
board = genericSTM32F103VE
|
||||||
platform_packages = tool-stm32duino
|
platform_packages = tool-stm32duino
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
|
${common.build_flags} -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_nano.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_nano.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# MKS Robin (STM32F103ZET6)
|
# MKS Robin (STM32F103ZET6)
|
||||||
#
|
#
|
||||||
[env:mks_robin]
|
[env:mks_robin]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103ZE
|
board = genericSTM32F103ZE
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_XL_DENSITY
|
${common.build_flags} -std=gnu++14 -DHAVE_SW_SERIAL -DSS_TIMER=4 -DSTM32_XL_DENSITY
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# MKS Robin Pro (STM32F103ZET6)
|
# MKS Robin Pro (STM32F103ZET6)
|
||||||
#
|
#
|
||||||
[env:mks_robin_pro]
|
[env:mks_robin_pro]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103ZE
|
board = genericSTM32F103ZE
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_pro.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_pro.py
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY
|
${common.build_flags} -std=gnu++14 -DSTM32_XL_DENSITY
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
lib_ignore = Adafruit NeoPixel, SPI, TMCStepper
|
lib_ignore = Adafruit NeoPixel, SPI, TMCStepper
|
||||||
|
|
||||||
#
|
#
|
||||||
# MKS Robin Lite/Lite2 (STM32F103RCT6)
|
# MKS Robin Lite/Lite2 (STM32F103RCT6)
|
||||||
#
|
#
|
||||||
[env:mks_robin_lite]
|
[env:mks_robin_lite]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103RC
|
board = genericSTM32F103RC
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14
|
${common.build_flags} -std=gnu++14
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# MKS ROBIN LITE3 (STM32F103RCT6)
|
# MKS ROBIN LITE3 (STM32F103RCT6)
|
||||||
#
|
#
|
||||||
[env:mks_robin_lite3]
|
[env:mks_robin_lite3]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103RC
|
board = genericSTM32F103RC
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite3.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/mks_robin_lite3.py
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -std=gnu++14
|
${common.build_flags} -std=gnu++14
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# JGAurora A5S A1 (STM32F103ZET6)
|
# JGAurora A5S A1 (STM32F103ZET6)
|
||||||
#
|
#
|
||||||
[env:jgaurora_a5s_a1]
|
[env:jgaurora_a5s_a1]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103ZE
|
board = genericSTM32F103ZE
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
|
${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py
|
extra_scripts = buildroot/share/PlatformIO/scripts/jgaurora_a5s_a1_with_bootloader.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_ignore = Adafruit NeoPixel, SPI
|
lib_ignore = Adafruit NeoPixel, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# Malyan M200 (STM32F103CB)
|
# Malyan M200 (STM32F103CB)
|
||||||
#
|
#
|
||||||
[env:STM32F103CB_malyan]
|
[env:STM32F103CB_malyan]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = malyanM200
|
board = malyanM200
|
||||||
build_flags = !python Marlin/src/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
|
build_flags = !python Marlin/src/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__
|
-DDEBUG_LEVEL=0 -D__MARLIN_FIRMWARE__
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI
|
lib_ignore = Adafruit NeoPixel, LiquidCrystal, LiquidTWI2, TMCStepper, U8glib-HAL, SPI
|
||||||
|
|
||||||
#
|
#
|
||||||
# Chitu boards like Tronxy X5s (STM32F103ZET6)
|
# Chitu boards like Tronxy X5s (STM32F103ZET6)
|
||||||
#
|
#
|
||||||
[env:chitu_f103]
|
[env:chitu_f103]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = genericSTM32F103ZE
|
board = genericSTM32F103ZE
|
||||||
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
build_flags = !python Marlin/src/HAL/STM32F1/build_flags.py
|
||||||
${common.build_flags} -DSTM32F1xx -std=gnu++14 -DSTM32_XL_DENSITY
|
${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
|
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
|
extra_scripts = buildroot/share/PlatformIO/scripts/chitu_crypt.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32F1>
|
||||||
lib_ignore = Adafruit NeoPixel
|
lib_ignore = Adafruit NeoPixel
|
||||||
|
|
||||||
#
|
#
|
||||||
# STM32F401VE
|
# STM32F401VE
|
||||||
@@ -605,7 +605,7 @@ build_unflags = -std=gnu++11
|
|||||||
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
||||||
buildroot/share/PlatformIO/scripts/STEVAL__F401XX.py
|
buildroot/share/PlatformIO/scripts/STEVAL__F401XX.py
|
||||||
lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
|
lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
|
|
||||||
#
|
#
|
||||||
# FLYF407ZG
|
# FLYF407ZG
|
||||||
@@ -621,7 +621,7 @@ build_flags = ${common.build_flags}
|
|||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
||||||
lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
|
lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -639,10 +639,10 @@ build_flags = ${common.build_flags}
|
|||||||
-DUSBCON -DUSBD_USE_CDC -DHAL_PCD_MODULE_ENABLED -DUSBD_VID=0x0483 '-DUSB_PRODUCT="FYSETC_S6"'
|
-DUSBCON -DUSBD_USE_CDC -DHAL_PCD_MODULE_ENABLED -DUSBD_VID=0x0483 '-DUSB_PRODUCT="FYSETC_S6"'
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = pre:buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py
|
extra_scripts = pre:buildroot/share/PlatformIO/scripts/fysetc_STM32S6.py
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
lib_ignore = Arduino-L6470
|
lib_ignore = Arduino-L6470
|
||||||
debug_tool = stlink
|
debug_tool = stlink
|
||||||
#upload_protocol = stlink
|
#upload_protocol = stlink
|
||||||
upload_protocol = serial
|
upload_protocol = serial
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -661,7 +661,7 @@ build_flags = ${common.build_flags}
|
|||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
||||||
lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
|
lib_ignore = Adafruit NeoPixel, TMCStepper, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster, SoftwareSerial
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
|
|
||||||
#
|
#
|
||||||
# BigTreeTech SKR Pro (STM32F407ZGT6 ARM Cortex-M4)
|
# BigTreeTech SKR Pro (STM32F407ZGT6 ARM Cortex-M4)
|
||||||
@@ -677,9 +677,9 @@ build_flags = ${common.build_flags}
|
|||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
||||||
lib_ignore = SoftwareSerial, SoftwareSerialM
|
lib_ignore = SoftwareSerial, SoftwareSerialM
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
#upload_protocol = stlink
|
#upload_protocol = stlink
|
||||||
#upload_command = "$PROJECT_PACKAGES_DIR/tool-stm32duino/stlink/ST-LINK_CLI.exe" -c SWD -P "$BUILD_DIR/firmware.bin" 0x8008000 -Rst -Run
|
#upload_command = "$PROJECT_PACKAGES_DIR/tool-stm32duino/stlink/ST-LINK_CLI.exe" -c SWD -P "$BUILD_DIR/firmware.bin" 0x8008000 -Rst -Run
|
||||||
debug_tool = stlink
|
debug_tool = stlink
|
||||||
debug_init_break =
|
debug_init_break =
|
||||||
|
|
||||||
@@ -704,7 +704,7 @@ lib_deps =
|
|||||||
LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
|
LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
|
||||||
Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
|
Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
|
||||||
lib_ignore = SoftwareSerial, SoftwareSerialM
|
lib_ignore = SoftwareSerial, SoftwareSerialM
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
monitor_speed = 250000
|
monitor_speed = 250000
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -724,47 +724,47 @@ build_flags = ${common.build_flags}
|
|||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
extra_scripts = pre:buildroot/share/PlatformIO/scripts/generic_create_variant.py
|
||||||
lib_ignore = Adafruit NeoPixel, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster
|
lib_ignore = Adafruit NeoPixel, SailfishLCD, SailfishRGB_LED, SlowSoftI2CMaster
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Teensy 3.1 / 3.2 (ARM Cortex-M4)
|
# Teensy 3.1 / 3.2 (ARM Cortex-M4)
|
||||||
#
|
#
|
||||||
[env:teensy31]
|
[env:teensy31]
|
||||||
platform = teensy
|
platform = teensy
|
||||||
board = teensy31
|
board = teensy31
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel
|
lib_ignore = Adafruit NeoPixel
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/TEENSY31_32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/TEENSY31_32>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Teensy 3.5 / 3.6 (ARM Cortex-M4)
|
# Teensy 3.5 / 3.6 (ARM Cortex-M4)
|
||||||
#
|
#
|
||||||
[env:teensy35]
|
[env:teensy35]
|
||||||
platform = teensy
|
platform = teensy
|
||||||
board = teensy35
|
board = teensy35
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
lib_ignore = Adafruit NeoPixel
|
lib_ignore = Adafruit NeoPixel
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/TEENSY35_36>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/TEENSY35_36>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Espressif ESP32
|
# Espressif ESP32
|
||||||
#
|
#
|
||||||
[env:esp32]
|
[env:esp32]
|
||||||
platform = espressif32@1.11.2
|
platform = espressif32@1.11.2
|
||||||
board = esp32dev
|
board = esp32dev
|
||||||
build_flags = ${common.build_flags} -DCORE_DEBUG_LEVEL=0
|
build_flags = ${common.build_flags} -DCORE_DEBUG_LEVEL=0
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
AsyncTCP=https://github.com/me-no-dev/AsyncTCP/archive/master.zip
|
AsyncTCP=https://github.com/me-no-dev/AsyncTCP/archive/master.zip
|
||||||
ESPAsyncWebServer=https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip
|
ESPAsyncWebServer=https://github.com/me-no-dev/ESPAsyncWebServer/archive/master.zip
|
||||||
ESP3DLib=https://github.com/luc-github/ESP3DLib.git
|
ESP3DLib=https://github.com/luc-github/ESP3DLib.git
|
||||||
arduinoWebSockets=https://github.com/Links2004/arduinoWebSockets.git
|
arduinoWebSockets=https://github.com/Links2004/arduinoWebSockets.git
|
||||||
ESP32SSDP=https://github.com/luc-github/ESP32SSDP.git
|
ESP32SSDP=https://github.com/luc-github/ESP32SSDP.git
|
||||||
lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, SailfishRGB_LED, ESPAsyncTCP
|
lib_ignore = LiquidCrystal, LiquidTWI2, SailfishLCD, SailfishRGB_LED, ESPAsyncTCP
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/ESP32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/ESP32>
|
||||||
upload_speed = 115200
|
upload_speed = 115200
|
||||||
#upload_port = marlinesp.local
|
#upload_port = marlinesp.local
|
||||||
#board_build.flash_mode = qio
|
#board_build.flash_mode = qio
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -772,36 +772,36 @@ upload_speed = 115200
|
|||||||
# No supported Arduino libraries, base Marlin only
|
# No supported Arduino libraries, base Marlin only
|
||||||
#
|
#
|
||||||
[env:linux_native]
|
[env:linux_native]
|
||||||
platform = native
|
platform = native
|
||||||
framework =
|
framework =
|
||||||
build_flags = -D__PLAT_LINUX__ -std=gnu++17 -ggdb -g -lrt -lpthread -D__MARLIN_FIRMWARE__ -Wno-expansion-to-defined
|
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/LINUX/include
|
src_build_flags = -Wall -IMarlin/src/HAL/LINUX/include
|
||||||
build_unflags = -Wall
|
build_unflags = -Wall
|
||||||
lib_ldf_mode = off
|
lib_ldf_mode = off
|
||||||
lib_deps =
|
lib_deps =
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/LINUX>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/LINUX>
|
||||||
|
|
||||||
#
|
#
|
||||||
# Adafruit Grand Central M4 (Atmel SAMD51P20A ARM Cortex-M4)
|
# Adafruit Grand Central M4 (Atmel SAMD51P20A ARM Cortex-M4)
|
||||||
#
|
#
|
||||||
[env:SAMD51_grandcentral_m4]
|
[env:SAMD51_grandcentral_m4]
|
||||||
platform = atmelsam
|
platform = atmelsam
|
||||||
board = adafruit_grandcentral_m4
|
board = adafruit_grandcentral_m4
|
||||||
build_flags = ${common.build_flags} -std=gnu++17 -Wno-register
|
build_flags = ${common.build_flags} -std=gnu++17 -Wno-register
|
||||||
build_unflags = -std=gnu++11
|
build_unflags = -std=gnu++11
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/SAMD51>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/SAMD51>
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
SoftwareSerialM=https://github.com/FYSETC/SoftwareSerialM/archive/master.zip
|
||||||
Adafruit_SPIFlash=https://github.com/adafruit/Adafruit_SPIFlash/archive/master.zip
|
Adafruit_SPIFlash=https://github.com/adafruit/Adafruit_SPIFlash/archive/master.zip
|
||||||
debug_tool = jlink
|
debug_tool = jlink
|
||||||
|
|
||||||
#
|
#
|
||||||
# RUMBA32
|
# RUMBA32
|
||||||
#
|
#
|
||||||
[env:rumba32_f446ve]
|
[env:rumba32_f446ve]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = rumba32_f446ve
|
board = rumba32_f446ve
|
||||||
build_flags = ${common.build_flags}
|
build_flags = ${common.build_flags}
|
||||||
-DSTM32F4xx
|
-DSTM32F4xx
|
||||||
-DARDUINO_RUMBA32_F446VE
|
-DARDUINO_RUMBA32_F446VE
|
||||||
-DARDUINO_ARCH_STM32
|
-DARDUINO_ARCH_STM32
|
||||||
@@ -816,18 +816,18 @@ build_flags = ${common.build_flags}
|
|||||||
-DDISABLE_GENERIC_SERIALUSB
|
-DDISABLE_GENERIC_SERIALUSB
|
||||||
-DHAL_UART_MODULE_ENABLED
|
-DHAL_UART_MODULE_ENABLED
|
||||||
-Os
|
-Os
|
||||||
lib_ignore = Adafruit NeoPixel
|
lib_ignore = Adafruit NeoPixel
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32>
|
||||||
monitor_speed = 500000
|
monitor_speed = 500000
|
||||||
upload_protocol = dfu
|
upload_protocol = dfu
|
||||||
|
|
||||||
#
|
#
|
||||||
# MKS RUMBA32 (adds TMC2208/2209 UART interface and AUX-1)
|
# MKS RUMBA32 (adds TMC2208/2209 UART interface and AUX-1)
|
||||||
#
|
#
|
||||||
[env:rumba32_mks]
|
[env:rumba32_mks]
|
||||||
platform = ststm32@<6.2.0
|
platform = ststm32@<6.2.0
|
||||||
board = rumba32_f446ve
|
board = rumba32_f446ve
|
||||||
build_flags = ${common.build_flags}
|
build_flags = ${common.build_flags}
|
||||||
-DSTM32F4xx -DARDUINO_RUMBA32_F446VE -DARDUINO_ARCH_STM32 "-DBOARD_NAME=\"RUMBA32_F446VE\""
|
-DSTM32F4xx -DARDUINO_RUMBA32_F446VE -DARDUINO_ARCH_STM32 "-DBOARD_NAME=\"RUMBA32_F446VE\""
|
||||||
-DSTM32F446xx -DUSBCON -DUSBD_VID=0x8000
|
-DSTM32F446xx -DUSBCON -DUSBD_VID=0x8000
|
||||||
"-DUSB_MANUFACTURER=\"Unknown\""
|
"-DUSB_MANUFACTURER=\"Unknown\""
|
||||||
@@ -837,17 +837,17 @@ build_flags = ${common.build_flags}
|
|||||||
-DDISABLE_GENERIC_SERIALUSB
|
-DDISABLE_GENERIC_SERIALUSB
|
||||||
-DHAL_UART_MODULE_ENABLED
|
-DHAL_UART_MODULE_ENABLED
|
||||||
-Os
|
-Os
|
||||||
lib_ignore = Adafruit NeoPixel
|
lib_ignore = Adafruit NeoPixel
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/STM32> +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
|
build_src_filter = ${common.default_src_filter} +<src/HAL/STM32> +<src/HAL/STM32_F4_F7> -<src/HAL/STM32_F4_F7/STM32F7>
|
||||||
upload_protocol = dfu
|
upload_protocol = dfu
|
||||||
|
|
||||||
#
|
#
|
||||||
# Just print the dependency tree
|
# Just print the dependency tree
|
||||||
#
|
#
|
||||||
[env:include_tree]
|
[env:include_tree]
|
||||||
platform = atmelavr
|
platform = atmelavr
|
||||||
board = megaatmega2560
|
board = megaatmega2560
|
||||||
build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__
|
build_flags = -c -H -std=gnu++11 -Wall -Os -D__MARLIN_FIRMWARE__
|
||||||
lib_deps = ${common.lib_deps}
|
lib_deps = ${common.lib_deps}
|
||||||
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
|
TMC26XStepper=https://github.com/MarlinFirmware/TMC26XStepper/archive/master.zip
|
||||||
src_filter = +<src/Marlin.cpp>
|
build_src_filter = +<src/Marlin.cpp>
|
||||||
|
Reference in New Issue
Block a user