Allow G26 with no heated bed (#13511)
This commit is contained in:
parent
6d9aaca082
commit
7240e3a68f
@ -1671,8 +1671,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -569,13 +569,15 @@ void GcodeSuite::G26() {
|
|||||||
bool g26_continue_with_closest = parser.boolval('C'),
|
bool g26_continue_with_closest = parser.boolval('C'),
|
||||||
g26_keep_heaters_on = parser.boolval('K');
|
g26_keep_heaters_on = parser.boolval('K');
|
||||||
|
|
||||||
if (parser.seenval('B')) {
|
#if HAS_HEATED_BED
|
||||||
g26_bed_temp = parser.value_celsius();
|
if (parser.seenval('B')) {
|
||||||
if (g26_bed_temp && !WITHIN(g26_bed_temp, 40, (BED_MAXTEMP - 10))) {
|
g26_bed_temp = parser.value_celsius();
|
||||||
SERIAL_ECHOLNPAIR("?Specified bed temperature not plausible (40-", int(BED_MAXTEMP - 10), "C).");
|
if (g26_bed_temp && !WITHIN(g26_bed_temp, 40, (BED_MAXTEMP - 10))) {
|
||||||
return;
|
SERIAL_ECHOLNPAIR("?Specified bed temperature not plausible (40-", int(BED_MAXTEMP - 10), "C).");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
#endif
|
||||||
|
|
||||||
if (parser.seenval('L')) {
|
if (parser.seenval('L')) {
|
||||||
g26_layer_height = parser.value_linear_units();
|
g26_layer_height = parser.value_linear_units();
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1676,8 +1676,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1678,8 +1678,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1671,8 +1671,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1679,8 +1679,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1671,8 +1671,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1671,8 +1671,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1671,8 +1671,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1670,8 +1670,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1676,8 +1676,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1678,8 +1678,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1678,8 +1678,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1671,8 +1671,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1675,8 +1675,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1671,8 +1671,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1687,8 +1687,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1672,8 +1672,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1673,8 +1673,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1674,8 +1674,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
@ -1675,8 +1675,7 @@
|
|||||||
/**
|
/**
|
||||||
* You can set your own advanced settings by filling in predefined functions.
|
* You can set your own advanced settings by filling in predefined functions.
|
||||||
* A list of available functions can be found on the library github page
|
* A list of available functions can be found on the library github page
|
||||||
* https://github.com/teemuatlut/TMC2130Stepper
|
* https://github.com/teemuatlut/TMCStepper
|
||||||
* https://github.com/teemuatlut/TMC2208Stepper
|
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* #define TMC_ADV() { \
|
* #define TMC_ADV() { \
|
||||||
|
Loading…
Reference in New Issue
Block a user