Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f91882400b | ||
|
abf7f93bda | ||
|
bcc3964aed | ||
|
9c59d44e9f | ||
|
e08673ac8d | ||
|
c1f9a5edaf | ||
|
54caef61a4 | ||
|
574357b47a | ||
|
9f76b31a19 | ||
|
86ec69c1b0 | ||
|
8d8d46a2b8 | ||
|
b00040c25d |
@@ -43,18 +43,24 @@
|
|||||||
//#define ANYCUBIC_TFT_DEBUG
|
//#define ANYCUBIC_TFT_DEBUG
|
||||||
//#define POWER_OUTAGE_TEST
|
//#define POWER_OUTAGE_TEST
|
||||||
|
|
||||||
/*****************************************************************************************
|
/*******************************************************************************************
|
||||||
* *
|
** **
|
||||||
* *
|
** **
|
||||||
* WARNING: *
|
** WARNING: **
|
||||||
* THE FOLLOWING SETTINGS ARE NORMALLY SET BY PLATFORMIO! *
|
** THE FOLLOWING SETTINGS ARE NORMALLY SET BY PLATFORMIO! **
|
||||||
* *
|
** **
|
||||||
* IF YOU CHANGE THEM WITHIN THE SOURCECODE, DO NOT COMMIT *
|
** IF YOU CHANGE THEM WITHIN THE SOURCECODE, DO NOT COMMIT **
|
||||||
* TO MASTER BRANCH OR BUILD WITH PLATFORMIO ENVIRONMENT! *
|
** TO MASTER BRANCH OR BUILD WITH PLATFORMIO ENVIRONMENT! **
|
||||||
* OTHERWISE SOME SETTINGS MIGHT BE OVERWRITTEN AND YOU END *
|
** OTHERWISE SOME SETTINGS MIGHT BE OVERWRITTEN AND YOU END **
|
||||||
* UP WITH A NON FUNCTIONING FIRMWARE! *
|
** UP WITH A NON FUNCTIONING FIRMWARE! **
|
||||||
* *
|
** **
|
||||||
* ***************************************************************************************/
|
** If you want to select a specific configuration for your **
|
||||||
|
** printer, just open the PlatformIO tab on the left, select **
|
||||||
|
** PROJECT TASKS and then "env:i3_MEGA*" (your desired config) **
|
||||||
|
** From there you can build and upload your code. **
|
||||||
|
** **
|
||||||
|
** **
|
||||||
|
*******************************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -64,6 +70,9 @@
|
|||||||
* MEGA is the normal i3 Version without spool holder and the cassic extruder
|
* MEGA is the normal i3 Version without spool holder and the cassic extruder
|
||||||
* MEGA_S is the S version with Titan clone extruder
|
* MEGA_S is the S version with Titan clone extruder
|
||||||
* MEGA_X is the big version with 310x310mm Bed
|
* MEGA_X is the big version with 310x310mm Bed
|
||||||
|
*
|
||||||
|
* PLEASE READ THE WARNING ABOVE!
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
//#define KNUTWURST_MEGA
|
//#define KNUTWURST_MEGA
|
||||||
//#define KNUTWURST_MEGA_S
|
//#define KNUTWURST_MEGA_S
|
||||||
@@ -74,6 +83,9 @@
|
|||||||
* you have the "new" Mega S with the blue/yellow
|
* you have the "new" Mega S with the blue/yellow
|
||||||
* Touchscreen display, you need to enable the
|
* Touchscreen display, you need to enable the
|
||||||
* DGUS2 switch to get the special menu to work
|
* DGUS2 switch to get the special menu to work
|
||||||
|
*
|
||||||
|
* PLEASE READ THE WARNING ABOVE!
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
//#define KNUTWURST_DGUS2_TFT
|
//#define KNUTWURST_DGUS2_TFT
|
||||||
|
|
||||||
@@ -81,6 +93,8 @@
|
|||||||
* Enable Support for Trinamic Stepper drivers.
|
* Enable Support for Trinamic Stepper drivers.
|
||||||
* This also inverts the X,Y,Z and Extruder motor
|
* This also inverts the X,Y,Z and Extruder motor
|
||||||
* outputs/directions.
|
* outputs/directions.
|
||||||
|
*
|
||||||
|
* PLEASE READ THE WARNING ABOVE!
|
||||||
*/
|
*/
|
||||||
//#define KNUTWURST_TMC
|
//#define KNUTWURST_TMC
|
||||||
|
|
||||||
@@ -90,6 +104,9 @@
|
|||||||
* special menu. It also removes all manual
|
* special menu. It also removes all manual
|
||||||
* leveling features because they are not
|
* leveling features because they are not
|
||||||
* neccessary at all.
|
* neccessary at all.
|
||||||
|
*
|
||||||
|
* PLEASE READ THE WARNING ABOVE!
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
//#define KNUTWURST_BLTOUCH // see <https://github.com/DerDominik/Marlin-AnycubicI3Mega-BLTouch/wiki/Aufbauplan_BLTouch>
|
//#define KNUTWURST_BLTOUCH // see <https://github.com/DerDominik/Marlin-AnycubicI3Mega-BLTouch/wiki/Aufbauplan_BLTouch>
|
||||||
|
|
||||||
@@ -98,22 +115,31 @@
|
|||||||
* It enabled more console output and should be
|
* It enabled more console output and should be
|
||||||
* disabled in production. It can cause the
|
* disabled in production. It can cause the
|
||||||
* printer to stutter.
|
* printer to stutter.
|
||||||
|
*
|
||||||
|
* PLEASE READ THE WARNING ABOVE!
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
//#define KNUTWURST_DEBUG
|
//#define KNUTWURST_DEBUG
|
||||||
|
|
||||||
|
|
||||||
/*****************************************************************************************
|
/*******************************************************************************************
|
||||||
* *
|
** **
|
||||||
* *
|
** **
|
||||||
* WARNING: *
|
** WARNING: **
|
||||||
* THE SETTINGS ABOVE ARE NORMALLY SET BY PLATFORMIO! *
|
** THE SETTINGS ABOVE ARE NORMALLY SET BY PLATFORMIO! **
|
||||||
* *
|
** **
|
||||||
* IF YOU CHANGE THEM WITHIN THE SOURCECODE, DO NOT COMMIT *
|
** IF YOU CHANGE THEM WITHIN THE SOURCECODE, DO NOT COMMIT **
|
||||||
* TO MASTER BRANCH OR BUILD WITH PLATFORMIO ENVIRONMENT! *
|
** TO MASTER BRANCH OR BUILD WITH PLATFORMIO ENVIRONMENT! **
|
||||||
* OTHERWISE SOME SETTINGS MIGHT BE OVERWRITTEN AND YOU END *
|
** OTHERWISE SOME SETTINGS MIGHT BE OVERWRITTEN AND YOU END **
|
||||||
* UP WITH A NON FUNCTIONING FIRMWARE! *
|
** UP WITH A NON FUNCTIONING FIRMWARE! **
|
||||||
* *
|
** **
|
||||||
* ***************************************************************************************/
|
** If you want to select a specific configuration for your **
|
||||||
|
** printer, just open the PlatformIO tab on the left, select **
|
||||||
|
** PROJECT TASKS and then "env:i3_MEGA*" (your desired config) **
|
||||||
|
** From there you can build and upload your code. **
|
||||||
|
** **
|
||||||
|
** **
|
||||||
|
*******************************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -889,11 +915,11 @@
|
|||||||
* X, Y, Z, E0 [, E1[, E2...]]
|
* X, Y, Z, E0 [, E1[, E2...]]
|
||||||
*/
|
*/
|
||||||
#if ENABLED(KNUTWURST_MEGA)
|
#if ENABLED(KNUTWURST_MEGA)
|
||||||
#define DEFAULT_MAX_FEEDRATE { 500, 500, 6, 60 }
|
#define DEFAULT_MAX_FEEDRATE { 500, 500, 20, 60 }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(KNUTWURST_MEGA_S)
|
#if ENABLED(KNUTWURST_MEGA_S)
|
||||||
#define DEFAULT_MAX_FEEDRATE { 500, 500, 6, 30 }
|
#define DEFAULT_MAX_FEEDRATE { 500, 500, 20, 30 }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(KNUTWURST_MEGA_X)
|
#if ENABLED(KNUTWURST_MEGA_X)
|
||||||
@@ -1152,10 +1178,10 @@
|
|||||||
|
|
||||||
// Most probes should stay away from the edges of the bed, but
|
// Most probes should stay away from the edges of the bed, but
|
||||||
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
|
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
|
||||||
#define MIN_PROBE_EDGE 10
|
#define MIN_PROBE_EDGE 30
|
||||||
|
|
||||||
// X and Y axis travel speed (mm/m) between probes
|
// X and Y axis travel speed (mm/m) between probes
|
||||||
#define XY_PROBE_SPEED 3600
|
#define XY_PROBE_SPEED 8000
|
||||||
|
|
||||||
// Feedrate (mm/m) for the first approach when double-probing (MULTIPLE_PROBING == 2)
|
// Feedrate (mm/m) for the first approach when double-probing (MULTIPLE_PROBING == 2)
|
||||||
#define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
|
#define Z_PROBE_SPEED_FAST HOMING_FEEDRATE_Z
|
||||||
@@ -1608,7 +1634,7 @@
|
|||||||
|
|
||||||
// Homing speeds (mm/m)
|
// Homing speeds (mm/m)
|
||||||
#define HOMING_FEEDRATE_XY (50*60)
|
#define HOMING_FEEDRATE_XY (50*60)
|
||||||
#define HOMING_FEEDRATE_Z (4*60)
|
#define HOMING_FEEDRATE_Z (10*60)
|
||||||
|
|
||||||
// Validate that endstops are triggered on homing moves
|
// Validate that endstops are triggered on homing moves
|
||||||
#define VALIDATE_HOMING_ENDSTOPS
|
#define VALIDATE_HOMING_ENDSTOPS
|
||||||
|
@@ -681,7 +681,7 @@
|
|||||||
* This feature was designed for Delta's with very fast Z moves however higher speed cartesians may function
|
* This feature was designed for Delta's with very fast Z moves however higher speed cartesians may function
|
||||||
* If the machine cannot raise the probe fast enough after a trigger, it may enter a fault state.
|
* If the machine cannot raise the probe fast enough after a trigger, it may enter a fault state.
|
||||||
*/
|
*/
|
||||||
//#define BLTOUCH_HS_MODE
|
#define BLTOUCH_HS_MODE
|
||||||
|
|
||||||
// Safety: Enable voltage mode settings in the LCD menu.
|
// Safety: Enable voltage mode settings in the LCD menu.
|
||||||
//#define BLTOUCH_LCD_VOLTAGE_MENU
|
//#define BLTOUCH_LCD_VOLTAGE_MENU
|
||||||
|
@@ -126,7 +126,7 @@
|
|||||||
#define STR_INVALID_E_STEPPER "Invalid E stepper"
|
#define STR_INVALID_E_STEPPER "Invalid E stepper"
|
||||||
#define STR_E_STEPPER_NOT_SPECIFIED "E stepper not specified"
|
#define STR_E_STEPPER_NOT_SPECIFIED "E stepper not specified"
|
||||||
#define STR_INVALID_SOLENOID "Invalid solenoid"
|
#define STR_INVALID_SOLENOID "Invalid solenoid"
|
||||||
#define STR_M115_REPORT "FIRMWARE_NAME:Marlin " DETAILED_BUILD_VERSION " MARLIN-AI3M_VERSION:" CUSTOM_BUILD_VERSION " SOURCE_CODE_URL:" SOURCE_CODE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID
|
#define STR_M115_REPORT "FIRMWARE_NAME:Marlin " DETAILED_BUILD_VERSION " KNUTWURST_AI3M_VERSION:" CUSTOM_BUILD_VERSION " DISTRIBUTION_DATE:" STRING_DISTRIBUTION_DATE " SOURCE_CODE_URL:" SOURCE_CODE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID
|
||||||
#define STR_MARLIN_AI3M "Marlin-AI3M"
|
#define STR_MARLIN_AI3M "Marlin-AI3M"
|
||||||
#define STR_COUNT_X " Count X:"
|
#define STR_COUNT_X " Count X:"
|
||||||
#define STR_COUNT_A " Count A:"
|
#define STR_COUNT_A " Count A:"
|
||||||
|
@@ -41,10 +41,11 @@
|
|||||||
* 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 CUSTOM_BUILD_VERSION "1.1.1"
|
#define CUSTOM_BUILD_VERSION "1.1.2"
|
||||||
|
|
||||||
#ifndef STRING_DISTRIBUTION_DATE
|
#ifndef STRING_DISTRIBUTION_DATE
|
||||||
#define STRING_DISTRIBUTION_DATE "2020-07-09"
|
//#define STRING_DISTRIBUTION_DATE "2020-07-09"
|
||||||
|
#define STRING_DISTRIBUTION_DATE "2020-08-13"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -447,7 +447,8 @@ void AnycubicTouchscreenClass::HandleSpecialMenu()
|
|||||||
|| (strcasestr(currentTouchscreenSelection, SM_PID_HOTEND_S) != NULL))
|
|| (strcasestr(currentTouchscreenSelection, SM_PID_HOTEND_S) != NULL))
|
||||||
{
|
{
|
||||||
SERIAL_ECHOLNPGM("Special Menu: PID Tune Hotend");
|
SERIAL_ECHOLNPGM("Special Menu: PID Tune Hotend");
|
||||||
queue.inject_P(PSTR("M106 S204\nM303 E0 S210 C15 U1"));
|
queue.inject_P(PSTR("M106 S204\nG4 P500\nM303 E0 S215 C15 U1"));
|
||||||
|
|
||||||
}
|
}
|
||||||
else if ((strcasestr(currentTouchscreenSelection, SM_PID_BED_L) != NULL)
|
else if ((strcasestr(currentTouchscreenSelection, SM_PID_BED_L) != NULL)
|
||||||
|| (strcasestr(currentTouchscreenSelection, SM_PID_BED_S) != NULL))
|
|| (strcasestr(currentTouchscreenSelection, SM_PID_BED_S) != NULL))
|
||||||
@@ -538,7 +539,7 @@ void AnycubicTouchscreenClass::HandleSpecialMenu()
|
|||||||
|| (strcasestr(currentTouchscreenSelection, SM_BLTOUCH_S) != NULL))
|
|| (strcasestr(currentTouchscreenSelection, SM_BLTOUCH_S) != NULL))
|
||||||
{
|
{
|
||||||
SERIAL_ECHOLNPGM("Special Menu: BLTouch Leveling");
|
SERIAL_ECHOLNPGM("Special Menu: BLTouch Leveling");
|
||||||
queue.inject_P(PSTR("G28\nG29\nM500\nG90\nG1 X0 Z30 F4000\nG91"));
|
queue.inject_P(PSTR("G28\nG29\nM500\nG90\nG1 Z30 F4000\nG1 X0 F4000\nG91"));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -1077,6 +1078,8 @@ void AnycubicTouchscreenClass::GetCommandFromTFT()
|
|||||||
|
|
||||||
if( (int)(strtod(&TFTcmdbuffer[TFTbufindw][TFTstrchr_pointer - TFTcmdbuffer[TFTbufindw] + 1], NULL)) != checksum)
|
if( (int)(strtod(&TFTcmdbuffer[TFTbufindw][TFTstrchr_pointer - TFTcmdbuffer[TFTbufindw] + 1], NULL)) != checksum)
|
||||||
{
|
{
|
||||||
|
HARDWARE_SERIAL_ERROR_START;
|
||||||
|
HardwareSerial.flush();
|
||||||
HARDWARE_SERIAL_ERROR_START;
|
HARDWARE_SERIAL_ERROR_START;
|
||||||
HardwareSerial.flush();
|
HardwareSerial.flush();
|
||||||
serial3_count = 0;
|
serial3_count = 0;
|
||||||
|
@@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
## Funktionen
|
## Funktionen
|
||||||
|
|
||||||
* Mesh-Bed Kalibrierung / Autokalibrierung mit BLTouch
|
* Mesh-Bed Kalibrierung / Autokalibrierung mit BLTouch [(Installations-Anleitung)](https://github.com/knutwurst/Marlin-2-0-x-Anycubic-i3-MEGA-S/wiki/BLTouch-Installation-(deutsch))
|
||||||
* S-Kurven Beschleunigung
|
* S-Kurven Beschleunigung
|
||||||
* "Juction Deviation" statt des klassischen "Jerk"
|
* "Juction Deviation" statt des klassischen "Jerk"
|
||||||
* "Linear Pressure Control v1.5" aktiviert (kann mit M900 konfiguriert werden)
|
* "Linear Pressure Control v1.5" aktiviert (kann mit M900 konfiguriert werden)
|
||||||
@@ -67,6 +67,8 @@
|
|||||||
* Kein Aufhängen, wenn das Filament leer ist
|
* Kein Aufhängen, wenn das Filament leer ist
|
||||||
* Keine "spezielle" BLTouch Firmware nötig. Hier ist alles drin
|
* Keine "spezielle" BLTouch Firmware nötig. Hier ist alles drin
|
||||||
* Konfiguration ganz einfach über Feature-Toggles
|
* Konfiguration ganz einfach über Feature-Toggles
|
||||||
|
* Man muss keine Grundkonfiguration per GCODE machen.
|
||||||
|
* Man muss kein Werksreset durchführen
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -188,7 +190,7 @@ Für (fast) jede Kombination gibt es eine passende Firmware im Download-Bereich.
|
|||||||
|
|
||||||
## Features:
|
## Features:
|
||||||
|
|
||||||
* Mesh bed calibration / Auto calibration with BLTouch
|
* Mesh bed calibration / Auto calibration with BLTouch [(see installation Manual)](https://github.com/knutwurst/Marlin-2-0-x-Anycubic-i3-MEGA-S/wiki/BLTouch-Installation-(english))
|
||||||
* S-curve acceleration
|
* S-curve acceleration
|
||||||
* "Juction Deviation" instead of the classic "Jerk"
|
* "Juction Deviation" instead of the classic "Jerk"
|
||||||
* "Linear Pressure Control v1.5" enabled (can be configured with M900)
|
* "Linear Pressure Control v1.5" enabled (can be configured with M900)
|
||||||
@@ -204,6 +206,8 @@ Für (fast) jede Kombination gibt es eine passende Firmware im Download-Bereich.
|
|||||||
* Power outage support
|
* Power outage support
|
||||||
* Print bed size enlarged to 220 x 225 x 210 mm
|
* Print bed size enlarged to 220 x 225 x 210 mm
|
||||||
* Automatic slowdown in if the data is not received fast enough
|
* Automatic slowdown in if the data is not received fast enough
|
||||||
|
* You don't have to do a basic configuration via GCODE.
|
||||||
|
* You do not have to perform a factory reset
|
||||||
|
|
||||||
### What's better in coparison to other firmwares (bug fixes):
|
### What's better in coparison to other firmwares (bug fixes):
|
||||||
* Tidy special menu
|
* Tidy special menu
|
||||||
|
@@ -1,15 +1,23 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
CURRENT_VERSION="1.1.1"
|
VERSION_FILE="/Users/OKoester/Documents/Arduino/Marlin-2-0-x-Anycubic-i3-MEGA-S-Master/Marlin/src/inc/Version.h"
|
||||||
FIRMWARE_FOLDER="/Users/OKoester/Documents/Arduino/Marlin-2-0-x-Anycubic-i3-MEGA-S-Master/.pio/build/"
|
FIRMWARE_FOLDER="/Users/OKoester/Documents/Arduino/Marlin-2-0-x-Anycubic-i3-MEGA-S-Master/.pio/build/"
|
||||||
OUTPUT_FOLDER="/Users/OKoester/Desktop/i3_FIRMWARE"
|
OUTPUT_FOLDER="/Users/OKoester/Desktop/i3_FIRMWARE"
|
||||||
|
|
||||||
mkdir $OUTPUT_FOLDER
|
if [ -d "$OUTPUT_FOLDER" ]; then
|
||||||
|
echo "$OUTPUT_FOLDER already exists."
|
||||||
|
else
|
||||||
|
mkdir $OUTPUT_FOLDER
|
||||||
|
fi
|
||||||
|
|
||||||
|
CUSTOM_BUILD_VERSION=$(egrep -o "([0-9]{1,}\.)+[0-9]{1,}" $VERSION_FILE -m2 | tail -n1)
|
||||||
|
|
||||||
|
echo "Knutwurst's Mega Firmware Version: $CUSTOM_BUILD_VERSION"
|
||||||
|
|
||||||
cd $FIRMWARE_FOLDER
|
cd $FIRMWARE_FOLDER
|
||||||
for dir in $FIRMWARE_FOLDER/*/ # list directories in the form "/tmp/dirname/"
|
for dir in $FIRMWARE_FOLDER/*/
|
||||||
do
|
do
|
||||||
dir=${dir%*/} # remove the trailing "/"
|
dir=${dir%*/}
|
||||||
echo ${dir##*/} # print everything after the final "<--/"
|
echo ${dir##*/}
|
||||||
cp ${dir##*/}/firmware.hex /$OUTPUT_FOLDER/${dir##*/}_v$CURRENT_VERSION.hex
|
cp ${dir##*/}/firmware.hex /$OUTPUT_FOLDER/${dir##*/}_v$CUSTOM_BUILD_VERSION.hex
|
||||||
done
|
done
|
@@ -14,7 +14,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA
|
||||||
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -27,7 +26,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA -DKNUTWURST_TMC
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA -DKNUTWURST_TMC
|
||||||
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -42,7 +40,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -55,7 +52,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_dgus.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -68,7 +64,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_dgus_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -81,7 +76,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_TMC
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_TMC
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -96,7 +90,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -109,7 +102,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_BLTOUCH
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_BLTOUCH
|
||||||
|
|
||||||
@@ -129,7 +121,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -141,7 +132,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
||||||
|
|
||||||
@@ -153,7 +143,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -166,7 +155,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_dgus.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -179,7 +167,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_dgus_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X
|
||||||
|
|
||||||
@@ -192,7 +179,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_S -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
||||||
|
|
||||||
@@ -204,7 +190,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -217,7 +202,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S
|
||||||
|
|
||||||
@@ -234,7 +218,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -246,7 +229,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
build_unflags = -DKNUTWURST_MEGA_S -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
||||||
|
|
||||||
@@ -258,7 +240,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -271,7 +252,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_dgus.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -284,7 +264,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_dgus_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X
|
||||||
|
|
||||||
@@ -297,7 +276,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_S -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT
|
||||||
|
|
||||||
@@ -309,7 +287,6 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_TMC
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S -DKNUTWURST_TMC
|
||||||
|
|
||||||
@@ -322,6 +299,5 @@ 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/trinamic/TMC26XStepper/archive/master.zip
|
||||||
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
src_filter = ${common.default_src_filter} +<src/HAL/AVR>
|
||||||
#extra_scripts = pre:build_i3_mega_s_tmc.py
|
|
||||||
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
build_flags = ${common.build_flags} -DMOTHERBOARD=BOARD_TRIGORILLA_14_11 -DKNUTWURST_MEGA_X -DKNUTWURST_DGUS2_TFT -DKNUTWURST_TMC -DKNUTWURST_BLTOUCH
|
||||||
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S
|
build_unflags = -DKNUTWURST_MEGA -DKNUTWURST_MEGA_S
|
BIN
images/bltouch_01.jpg
Normal file
After Width: | Height: | Size: 269 KiB |
BIN
images/bltouch_02.jpg
Normal file
After Width: | Height: | Size: 568 KiB |
BIN
images/bltouch_03.jpg
Normal file
After Width: | Height: | Size: 340 KiB |
BIN
images/bltouch_04.jpg
Normal file
After Width: | Height: | Size: 362 KiB |
BIN
images/bltouch_05.jpg
Normal file
After Width: | Height: | Size: 442 KiB |
BIN
images/bltouch_06.jpg
Normal file
After Width: | Height: | Size: 265 KiB |
BIN
images/bltouch_07.jpg
Normal file
After Width: | Height: | Size: 420 KiB |
BIN
images/bltouch_08.jpg
Normal file
After Width: | Height: | Size: 367 KiB |
BIN
images/bltouch_09.jpg
Normal file
After Width: | Height: | Size: 627 KiB |
BIN
images/bltouch_10.jpg
Normal file
After Width: | Height: | Size: 405 KiB |
BIN
images/bltouch_wiring.jpg
Normal file
After Width: | Height: | Size: 376 KiB |