2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2017-03-07 05:00:43 +00:00
|
|
|
* stepper_indirection.cpp
|
|
|
|
*
|
|
|
|
* Stepper motor driver indirection to allow some stepper functions to
|
|
|
|
* be done via SPI/I2c instead of direct pin manipulation.
|
|
|
|
*
|
|
|
|
* Part of Marlin
|
|
|
|
*
|
|
|
|
* Copyright (c) 2015 Dominik Wenger
|
|
|
|
*/
|
2015-02-26 11:57:46 +00:00
|
|
|
|
|
|
|
#include "stepper_indirection.h"
|
2016-07-25 01:54:24 +00:00
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../inc/MarlinConfig.h"
|
2015-02-26 11:57:46 +00:00
|
|
|
|
2016-11-07 20:46:01 +00:00
|
|
|
//
|
|
|
|
// TMC26X Driver objects and inits
|
|
|
|
//
|
2015-07-31 05:28:11 +00:00
|
|
|
#if ENABLED(HAVE_TMCDRIVER)
|
2016-11-07 20:46:01 +00:00
|
|
|
|
2015-07-31 05:28:11 +00:00
|
|
|
#include <SPI.h>
|
2018-01-21 23:13:56 +00:00
|
|
|
|
2018-01-15 08:28:39 +00:00
|
|
|
#ifdef STM32F7
|
2018-01-11 21:29:08 +00:00
|
|
|
#include "../HAL/HAL_STM32F7/TMC2660.h"
|
|
|
|
#else
|
|
|
|
#include <TMC26XStepper.h>
|
|
|
|
#endif
|
2015-02-26 11:57:46 +00:00
|
|
|
|
2017-03-07 05:00:43 +00:00
|
|
|
#define _TMC_DEFINE(ST) TMC26XStepper stepper##ST(200, ST##_ENABLE_PIN, ST##_STEP_PIN, ST##_DIR_PIN, ST##_MAX_CURRENT, ST##_SENSE_RESISTOR)
|
|
|
|
|
2015-07-31 05:28:11 +00:00
|
|
|
#if ENABLED(X_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(X);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(X2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(Y);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(Y2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(Z);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(Z2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(E0);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(E1);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(E2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_TMC)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC_DEFINE(E3);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
2017-04-09 08:23:05 +00:00
|
|
|
#if ENABLED(E4_IS_TMC)
|
|
|
|
_TMC_DEFINE(E4);
|
|
|
|
#endif
|
2015-02-27 11:43:23 +00:00
|
|
|
|
2016-11-07 20:46:01 +00:00
|
|
|
#define _TMC_INIT(A) do{ \
|
2017-03-04 11:17:39 +00:00
|
|
|
stepper##A.setMicrosteps(A##_MICROSTEPS); \
|
|
|
|
stepper##A.start(); \
|
2017-03-07 05:00:43 +00:00
|
|
|
}while(0)
|
2016-11-07 20:46:01 +00:00
|
|
|
|
|
|
|
void tmc_init() {
|
|
|
|
#if ENABLED(X_IS_TMC)
|
|
|
|
_TMC_INIT(X);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_TMC)
|
|
|
|
_TMC_INIT(X2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_TMC)
|
|
|
|
_TMC_INIT(Y);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_TMC)
|
|
|
|
_TMC_INIT(Y2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_TMC)
|
|
|
|
_TMC_INIT(Z);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_TMC)
|
|
|
|
_TMC_INIT(Z2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_TMC)
|
|
|
|
_TMC_INIT(E0);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_TMC)
|
|
|
|
_TMC_INIT(E1);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_TMC)
|
|
|
|
_TMC_INIT(E2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_TMC)
|
|
|
|
_TMC_INIT(E3);
|
|
|
|
#endif
|
2017-04-09 08:23:05 +00:00
|
|
|
#if ENABLED(E4_IS_TMC)
|
|
|
|
_TMC_INIT(E4);
|
|
|
|
#endif
|
2016-11-07 20:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAVE_TMCDRIVER
|
|
|
|
|
|
|
|
//
|
|
|
|
// TMC2130 Driver objects and inits
|
|
|
|
//
|
2017-03-07 05:00:43 +00:00
|
|
|
#if ENABLED(HAVE_TMC2130)
|
2016-11-07 20:35:14 +00:00
|
|
|
|
2016-09-14 06:48:47 +00:00
|
|
|
#include <SPI.h>
|
2017-03-07 05:00:43 +00:00
|
|
|
#include <TMC2130Stepper.h>
|
2017-12-15 21:03:14 +00:00
|
|
|
#include "planner.h"
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../core/enum.h"
|
2016-09-14 06:48:47 +00:00
|
|
|
|
2017-04-15 03:44:08 +00:00
|
|
|
#define _TMC2130_DEFINE(ST) TMC2130Stepper stepper##ST(ST##_ENABLE_PIN, ST##_DIR_PIN, ST##_STEP_PIN, ST##_CS_PIN)
|
2016-09-14 06:48:47 +00:00
|
|
|
|
2017-03-07 05:00:43 +00:00
|
|
|
// Stepper objects of TMC2130 steppers used
|
2016-11-07 20:35:14 +00:00
|
|
|
#if ENABLED(X_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(X);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(X2);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(Y);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(Y2);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(Z);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(Z2);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(E0);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(E1);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(E2);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_TMC2130)
|
2017-03-07 05:00:43 +00:00
|
|
|
_TMC2130_DEFINE(E3);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
2017-04-09 08:23:05 +00:00
|
|
|
#if ENABLED(E4_IS_TMC2130)
|
|
|
|
_TMC2130_DEFINE(E4);
|
|
|
|
#endif
|
2016-11-07 20:35:14 +00:00
|
|
|
|
2017-03-07 05:00:43 +00:00
|
|
|
// Use internal reference voltage for current calculations. This is the default.
|
|
|
|
// Following values from Trinamic's spreadsheet with values for a NEMA17 (42BYGHW609)
|
2017-04-15 03:44:08 +00:00
|
|
|
// https://www.trinamic.com/products/integrated-circuits/details/tmc2130/
|
2017-12-15 21:03:14 +00:00
|
|
|
void tmc2130_init(TMC2130Stepper &st, const uint16_t microsteps, const uint32_t thrs, const float spmm) {
|
2017-03-07 05:00:43 +00:00
|
|
|
st.begin();
|
|
|
|
st.setCurrent(st.getCurrent(), R_SENSE, HOLD_MULTIPLIER);
|
|
|
|
st.microsteps(microsteps);
|
2017-12-15 21:03:14 +00:00
|
|
|
st.blank_time(24);
|
2017-04-15 03:44:08 +00:00
|
|
|
st.off_time(5); // Only enables the driver if used with stealthChop
|
2017-03-07 05:00:43 +00:00
|
|
|
st.interpolate(INTERPOLATE);
|
2017-04-15 03:44:08 +00:00
|
|
|
st.power_down_delay(128); // ~2s until driver lowers to hold current
|
2017-12-15 21:03:14 +00:00
|
|
|
st.hysterisis_start(3);
|
|
|
|
st.hysterisis_end(2);
|
|
|
|
st.diag1_active_high(1); // For sensorless homing
|
2017-03-07 05:00:43 +00:00
|
|
|
#if ENABLED(STEALTHCHOP)
|
2017-04-15 03:44:08 +00:00
|
|
|
st.stealth_freq(1); // f_pwm = 2/683 f_clk
|
|
|
|
st.stealth_autoscale(1);
|
|
|
|
st.stealth_gradient(5);
|
|
|
|
st.stealth_amplitude(255);
|
2017-03-07 05:00:43 +00:00
|
|
|
st.stealthChop(1);
|
2017-04-15 03:44:08 +00:00
|
|
|
#if ENABLED(HYBRID_THRESHOLD)
|
2017-12-15 21:03:14 +00:00
|
|
|
st.stealth_max_speed(12650000UL*microsteps/(256*thrs*spmm));
|
|
|
|
#else
|
|
|
|
UNUSED(thrs);
|
|
|
|
UNUSED(spmm);
|
2017-04-15 03:44:08 +00:00
|
|
|
#endif
|
|
|
|
#elif ENABLED(SENSORLESS_HOMING)
|
|
|
|
st.coolstep_min_speed(1024UL * 1024UL - 1UL);
|
2017-03-07 05:00:43 +00:00
|
|
|
#endif
|
2017-12-15 21:03:14 +00:00
|
|
|
st.GSTAT(); // Clear GSTAT
|
2017-03-07 05:00:43 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 03:44:08 +00:00
|
|
|
#define _TMC2130_INIT(ST, SPMM) tmc2130_init(stepper##ST, ST##_MICROSTEPS, ST##_HYBRID_THRESHOLD, SPMM)
|
2017-03-07 05:00:43 +00:00
|
|
|
|
2016-11-07 20:35:14 +00:00
|
|
|
void tmc2130_init() {
|
|
|
|
#if ENABLED(X_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
_TMC2130_INIT( X, planner.axis_steps_per_mm[X_AXIS]);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
_TMC2130_INIT(X2, planner.axis_steps_per_mm[X_AXIS]);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
_TMC2130_INIT( Y, planner.axis_steps_per_mm[Y_AXIS]);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
_TMC2130_INIT(Y2, planner.axis_steps_per_mm[Y_AXIS]);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
_TMC2130_INIT( Z, planner.axis_steps_per_mm[Z_AXIS]);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
_TMC2130_INIT(Z2, planner.axis_steps_per_mm[Z_AXIS]);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
_TMC2130_INIT(E0, planner.axis_steps_per_mm[E_AXIS]);
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
{ constexpr int extruder = 1; _TMC2130_INIT(E1, planner.axis_steps_per_mm[E_AXIS_N]); }
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
{ constexpr int extruder = 2; _TMC2130_INIT(E2, planner.axis_steps_per_mm[E_AXIS_N]); }
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
{ constexpr int extruder = 3; _TMC2130_INIT(E3, planner.axis_steps_per_mm[E_AXIS_N]); }
|
2016-11-07 20:35:14 +00:00
|
|
|
#endif
|
2017-04-09 08:23:05 +00:00
|
|
|
#if ENABLED(E4_IS_TMC2130)
|
2017-12-15 21:03:14 +00:00
|
|
|
{ constexpr int extruder = 4; _TMC2130_INIT(E4, planner.axis_steps_per_mm[E_AXIS_N]); }
|
2017-04-09 08:23:05 +00:00
|
|
|
#endif
|
2017-03-07 05:00:43 +00:00
|
|
|
|
2016-11-07 20:35:14 +00:00
|
|
|
}
|
2017-03-07 05:00:43 +00:00
|
|
|
#endif // HAVE_TMC2130
|
2016-11-07 20:35:14 +00:00
|
|
|
|
2017-12-15 21:03:14 +00:00
|
|
|
//
|
|
|
|
// TMC2208 Driver objects and inits
|
|
|
|
//
|
|
|
|
#if ENABLED(HAVE_TMC2208)
|
|
|
|
|
|
|
|
#include <SoftwareSerial.h>
|
|
|
|
#include <HardwareSerial.h>
|
|
|
|
#include <TMC2208Stepper.h>
|
|
|
|
#include "planner.h"
|
|
|
|
|
|
|
|
#define _TMC2208_DEFINE_HARDWARE(ST) TMC2208Stepper stepper##ST(&ST##_HARDWARE_SERIAL)
|
|
|
|
#define _TMC2208_DEFINE_SOFTWARE(ST) SoftwareSerial stepper##ST##_serial = SoftwareSerial(ST##_SERIAL_RX_PIN, ST##_SERIAL_TX_PIN); \
|
|
|
|
TMC2208Stepper stepper##ST(&stepper##ST##_serial, ST##_SERIAL_RX_PIN > -1)
|
|
|
|
|
|
|
|
// Stepper objects of TMC2208 steppers used
|
|
|
|
#if ENABLED(X_IS_TMC2208)
|
|
|
|
#if defined(X_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(X);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(X);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_TMC2208)
|
|
|
|
#if defined(X2_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(X2);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(X2);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_TMC2208)
|
|
|
|
#if defined(Y_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(Y);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(Y);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_TMC2208)
|
|
|
|
#if defined(Y2_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(Y2);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(Y2);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_TMC2208)
|
|
|
|
#if defined(Z_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(Z);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(Z);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_TMC2208)
|
|
|
|
#if defined(Z2_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(Z2);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(Z2);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_TMC2208)
|
|
|
|
#if defined(E0_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(E0);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(E0);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_TMC2208)
|
|
|
|
#if defined(E1_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(E1);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(E1);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_TMC2208)
|
|
|
|
#if defined(E2_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(E2);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(E2);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_TMC2208)
|
|
|
|
#if defined(E3_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(E3);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(E3);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E4_IS_TMC2208)
|
|
|
|
#if defined(E4_HARDWARE_SERIAL)
|
|
|
|
_TMC2208_DEFINE_HARDWARE(E4);
|
|
|
|
#else
|
|
|
|
_TMC2208_DEFINE_SOFTWARE(E4);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void tmc2208_serial_begin() {
|
|
|
|
#if ENABLED(X_IS_TMC2208) && defined(X_HARDWARE_SERIAL)
|
|
|
|
X_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_TMC2208) && defined(X2_HARDWARE_SERIAL)
|
|
|
|
X2_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_TMC2208) && defined(Y_HARDWARE_SERIAL)
|
|
|
|
Y_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_TMC2208) && defined(Y2_HARDWARE_SERIAL)
|
|
|
|
Y2_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_TMC2208) && defined(Z_HARDWARE_SERIAL)
|
|
|
|
Z_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_TMC2208) && defined(Z2_HARDWARE_SERIAL)
|
|
|
|
Z2_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_TMC2208) && defined(E0_HARDWARE_SERIAL)
|
|
|
|
E0_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_TMC2208) && defined(E1_HARDWARE_SERIAL)
|
|
|
|
E1_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_TMC2208) && defined(E2_HARDWARE_SERIAL)
|
|
|
|
E2_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_TMC2208) && defined(E3_HARDWARE_SERIAL)
|
|
|
|
E3_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E4_IS_TMC2208) && defined(E4_HARDWARE_SERIAL)
|
|
|
|
E4_HARDWARE_SERIAL.begin(250000);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use internal reference voltage for current calculations. This is the default.
|
|
|
|
// Following values from Trinamic's spreadsheet with values for a NEMA17 (42BYGHW609)
|
|
|
|
void tmc2208_init(TMC2208Stepper &st, const uint16_t microsteps, const uint32_t thrs, const float spmm) {
|
|
|
|
st.pdn_disable(true); // Use UART
|
|
|
|
st.mstep_reg_select(true); // Select microsteps with UART
|
|
|
|
st.I_scale_analog(false);
|
|
|
|
st.rms_current(st.getCurrent(), HOLD_MULTIPLIER, R_SENSE);
|
|
|
|
st.microsteps(microsteps);
|
|
|
|
st.blank_time(24);
|
|
|
|
st.toff(5);
|
|
|
|
st.intpol(INTERPOLATE);
|
|
|
|
st.TPOWERDOWN(128); // ~2s until driver lowers to hold current
|
|
|
|
st.hysterisis_start(3);
|
|
|
|
st.hysterisis_end(2);
|
|
|
|
#if ENABLED(STEALTHCHOP)
|
|
|
|
st.pwm_lim(12);
|
|
|
|
st.pwm_reg(8);
|
|
|
|
st.pwm_autograd(1);
|
|
|
|
st.pwm_autoscale(1);
|
|
|
|
st.pwm_freq(1);
|
|
|
|
st.pwm_grad(14);
|
|
|
|
st.pwm_ofs(36);
|
|
|
|
st.en_spreadCycle(false);
|
|
|
|
#if ENABLED(HYBRID_THRESHOLD)
|
|
|
|
st.TPWMTHRS(12650000UL*microsteps/(256*thrs*spmm));
|
|
|
|
#else
|
|
|
|
UNUSED(thrs);
|
|
|
|
UNUSED(spmm);
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
st.en_spreadCycle(true);
|
|
|
|
#endif
|
|
|
|
st.GSTAT(0b111); // Clear
|
|
|
|
delay(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define _TMC2208_INIT(ST, SPMM) tmc2208_init(stepper##ST, ST##_MICROSTEPS, ST##_HYBRID_THRESHOLD, SPMM)
|
|
|
|
|
|
|
|
void tmc2208_init() {
|
|
|
|
#if ENABLED(X_IS_TMC2208)
|
|
|
|
_TMC2208_INIT(X, planner.axis_steps_per_mm[X_AXIS]);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_TMC2208)
|
|
|
|
_TMC2208_INIT(X2, planner.axis_steps_per_mm[X_AXIS]);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_TMC2208)
|
|
|
|
_TMC2208_INIT(Y, planner.axis_steps_per_mm[Y_AXIS]);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_TMC2208)
|
|
|
|
_TMC2208_INIT(Y2, planner.axis_steps_per_mm[Y_AXIS]);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_TMC2208)
|
|
|
|
_TMC2208_INIT(Z, planner.axis_steps_per_mm[Z_AXIS]);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_TMC2208)
|
|
|
|
_TMC2208_INIT(Z2, planner.axis_steps_per_mm[Z_AXIS]);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_TMC2208)
|
|
|
|
_TMC2208_INIT(E0, planner.axis_steps_per_mm[E_AXIS]);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_TMC2208)
|
|
|
|
{ constexpr int extruder = 1; _TMC2208_INIT(E1, planner.axis_steps_per_mm[E_AXIS_N]); }
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_TMC2208)
|
|
|
|
{ constexpr int extruder = 2; _TMC2208_INIT(E2, planner.axis_steps_per_mm[E_AXIS_N]); }
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_TMC2208)
|
|
|
|
{ constexpr int extruder = 3; _TMC2208_INIT(E3, planner.axis_steps_per_mm[E_AXIS_N]); }
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E4_IS_TMC2208)
|
|
|
|
{ constexpr int extruder = 4; _TMC2208_INIT(E4, planner.axis_steps_per_mm[E_AXIS_N]); }
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif // HAVE_TMC2208
|
|
|
|
|
2016-09-14 06:48:47 +00:00
|
|
|
|
2016-11-07 20:46:01 +00:00
|
|
|
//
|
2015-02-27 11:43:23 +00:00
|
|
|
// L6470 Driver objects and inits
|
2016-11-07 20:46:01 +00:00
|
|
|
//
|
2015-07-31 05:28:11 +00:00
|
|
|
#if ENABLED(HAVE_L6470DRIVER)
|
2016-11-07 20:46:01 +00:00
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
#include <SPI.h>
|
|
|
|
#include <L6470.h>
|
2015-02-27 11:43:23 +00:00
|
|
|
|
2017-03-07 05:00:43 +00:00
|
|
|
#define _L6470_DEFINE(ST) L6470 stepper##ST(ST##_ENABLE_PIN)
|
|
|
|
|
2016-11-07 20:46:01 +00:00
|
|
|
// L6470 Stepper objects
|
2015-07-31 05:28:11 +00:00
|
|
|
#if ENABLED(X_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(X);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(X2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(Y);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(Y2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(Z);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(Z2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(E0);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(E1);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(E2);
|
2015-07-31 05:28:11 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_L6470)
|
2017-03-07 05:00:43 +00:00
|
|
|
_L6470_DEFINE(E3);
|
2015-10-03 06:08:58 +00:00
|
|
|
#endif
|
2017-04-09 08:23:05 +00:00
|
|
|
#if ENABLED(E4_IS_L6470)
|
|
|
|
_L6470_DEFINE(E4);
|
|
|
|
#endif
|
2016-11-07 20:46:01 +00:00
|
|
|
|
|
|
|
#define _L6470_INIT(A) do{ \
|
2017-09-07 08:36:39 +00:00
|
|
|
stepper##A.init(); \
|
2016-11-07 20:46:01 +00:00
|
|
|
stepper##A.softFree(); \
|
|
|
|
stepper##A.setMicroSteps(A##_MICROSTEPS); \
|
|
|
|
stepper##A.setOverCurrent(A##_OVERCURRENT); \
|
|
|
|
stepper##A.setStallCurrent(A##_STALLCURRENT); \
|
2017-06-15 20:17:41 +00:00
|
|
|
}while(0)
|
2016-11-07 20:46:01 +00:00
|
|
|
|
|
|
|
void L6470_init() {
|
|
|
|
#if ENABLED(X_IS_L6470)
|
|
|
|
_L6470_INIT(X);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(X2_IS_L6470)
|
|
|
|
_L6470_INIT(X2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_IS_L6470)
|
|
|
|
_L6470_INIT(Y);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Y2_IS_L6470)
|
|
|
|
_L6470_INIT(Y2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_IS_L6470)
|
|
|
|
_L6470_INIT(Z);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z2_IS_L6470)
|
|
|
|
_L6470_INIT(Z2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E0_IS_L6470)
|
|
|
|
_L6470_INIT(E0);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E1_IS_L6470)
|
|
|
|
_L6470_INIT(E1);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E2_IS_L6470)
|
|
|
|
_L6470_INIT(E2);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(E3_IS_L6470)
|
|
|
|
_L6470_INIT(E3);
|
|
|
|
#endif
|
2017-04-09 08:23:05 +00:00
|
|
|
#if ENABLED(E4_IS_L6470)
|
|
|
|
_L6470_INIT(E4);
|
|
|
|
#endif
|
2016-11-07 20:46:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAVE_L6470DRIVER
|
2015-02-27 11:43:23 +00:00
|
|
|
|