145 lines
4.2 KiB
C
145 lines
4.2 KiB
C
|
/**
|
||
|
* Marlin 3D Printer Firmware
|
||
|
* Copyright (c) 2019 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/>.
|
||
|
*
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
/**
|
||
|
* stepper/TMC26X.h
|
||
|
* Stepper driver indirection for TMC26X drivers
|
||
|
*/
|
||
|
|
||
|
#include "../../inc/MarlinConfig.h"
|
||
|
|
||
|
// TMC26X drivers have STEP/DIR on normal pins, but ENABLE via SPI
|
||
|
|
||
|
#include <SPI.h>
|
||
|
#if defined(STM32GENERIC) && defined(STM32F7)
|
||
|
#include "../../HAL/HAL_STM32_F4_F7/STM32F7/TMC2660.h"
|
||
|
#else
|
||
|
#include <TMC26XStepper.h>
|
||
|
#endif
|
||
|
|
||
|
void tmc26x_init_to_defaults();
|
||
|
|
||
|
// X Stepper
|
||
|
#if AXIS_DRIVER_TYPE_X(TMC26X)
|
||
|
extern TMC26XStepper stepperX;
|
||
|
#define X_ENABLE_INIT NOOP
|
||
|
#define X_ENABLE_WRITE(STATE) stepperX.setEnabled(STATE)
|
||
|
#define X_ENABLE_READ() stepperX.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// Y Stepper
|
||
|
#if AXIS_DRIVER_TYPE_Y(TMC26X)
|
||
|
extern TMC26XStepper stepperY;
|
||
|
#define Y_ENABLE_INIT NOOP
|
||
|
#define Y_ENABLE_WRITE(STATE) stepperY.setEnabled(STATE)
|
||
|
#define Y_ENABLE_READ() stepperY.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// Z Stepper
|
||
|
#if AXIS_DRIVER_TYPE_Z(TMC26X)
|
||
|
extern TMC26XStepper stepperZ;
|
||
|
#define Z_ENABLE_INIT NOOP
|
||
|
#define Z_ENABLE_WRITE(STATE) stepperZ.setEnabled(STATE)
|
||
|
#define Z_ENABLE_READ() stepperZ.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// X2 Stepper
|
||
|
#if HAS_X2_ENABLE && AXIS_DRIVER_TYPE_X2(TMC26X)
|
||
|
extern TMC26XStepper stepperX2;
|
||
|
#define X2_ENABLE_INIT NOOP
|
||
|
#define X2_ENABLE_WRITE(STATE) stepperX2.setEnabled(STATE)
|
||
|
#define X2_ENABLE_READ() stepperX2.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// Y2 Stepper
|
||
|
#if HAS_Y2_ENABLE && AXIS_DRIVER_TYPE_Y2(TMC26X)
|
||
|
extern TMC26XStepper stepperY2;
|
||
|
#define Y2_ENABLE_INIT NOOP
|
||
|
#define Y2_ENABLE_WRITE(STATE) stepperY2.setEnabled(STATE)
|
||
|
#define Y2_ENABLE_READ() stepperY2.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// Z2 Stepper
|
||
|
#if HAS_Z2_ENABLE && AXIS_DRIVER_TYPE_Z2(TMC26X)
|
||
|
extern TMC26XStepper stepperZ2;
|
||
|
#define Z2_ENABLE_INIT NOOP
|
||
|
#define Z2_ENABLE_WRITE(STATE) stepperZ2.setEnabled(STATE)
|
||
|
#define Z2_ENABLE_READ() stepperZ2.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// Z3 Stepper
|
||
|
#if HAS_Z3_ENABLE && ENABLED(Z3_IS_TMC26X)
|
||
|
extern TMC26XStepper stepperZ3;
|
||
|
#define Z3_ENABLE_INIT NOOP
|
||
|
#define Z3_ENABLE_WRITE(STATE) stepperZ3.setEnabled(STATE)
|
||
|
#define Z3_ENABLE_READ() stepperZ3.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// E0 Stepper
|
||
|
#if AXIS_DRIVER_TYPE_E0(TMC26X)
|
||
|
extern TMC26XStepper stepperE0;
|
||
|
#define E0_ENABLE_INIT NOOP
|
||
|
#define E0_ENABLE_WRITE(STATE) stepperE0.setEnabled(STATE)
|
||
|
#define E0_ENABLE_READ() stepperE0.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// E1 Stepper
|
||
|
#if AXIS_DRIVER_TYPE_E1(TMC26X)
|
||
|
extern TMC26XStepper stepperE1;
|
||
|
#define E1_ENABLE_INIT NOOP
|
||
|
#define E1_ENABLE_WRITE(STATE) stepperE1.setEnabled(STATE)
|
||
|
#define E1_ENABLE_READ() stepperE1.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// E2 Stepper
|
||
|
#if AXIS_DRIVER_TYPE_E2(TMC26X)
|
||
|
extern TMC26XStepper stepperE2;
|
||
|
#define E2_ENABLE_INIT NOOP
|
||
|
#define E2_ENABLE_WRITE(STATE) stepperE2.setEnabled(STATE)
|
||
|
#define E2_ENABLE_READ() stepperE2.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// E3 Stepper
|
||
|
#if AXIS_DRIVER_TYPE_E3(TMC26X)
|
||
|
extern TMC26XStepper stepperE3;
|
||
|
#define E3_ENABLE_INIT NOOP
|
||
|
#define E3_ENABLE_WRITE(STATE) stepperE3.setEnabled(STATE)
|
||
|
#define E3_ENABLE_READ() stepperE3.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// E4 Stepper
|
||
|
#if AXIS_DRIVER_TYPE_E4(TMC26X)
|
||
|
extern TMC26XStepper stepperE4;
|
||
|
#define E4_ENABLE_INIT NOOP
|
||
|
#define E4_ENABLE_WRITE(STATE) stepperE4.setEnabled(STATE)
|
||
|
#define E4_ENABLE_READ() stepperE4.isEnabled()
|
||
|
#endif
|
||
|
|
||
|
// E5 Stepper
|
||
|
#if AXIS_DRIVER_TYPE_E5(TMC26X)
|
||
|
extern TMC26XStepper stepperE5;
|
||
|
#define E5_ENABLE_INIT NOOP
|
||
|
#define E5_ENABLE_WRITE(STATE) stepperE5.setEnabled(STATE)
|
||
|
#define E5_ENABLE_READ() stepperE5.isEnabled()
|
||
|
#endif
|