2019-01-17 20:17:16 +01:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-01-17 20:17:16 +01:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2019-01-17 20:17:16 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// TMC Menu
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
|
|
|
|
|
|
|
#if HAS_TRINAMIC && HAS_LCD_MENU
|
|
|
|
|
|
|
|
#include "menu.h"
|
2019-09-01 02:44:45 +02:00
|
|
|
#include "../../module/stepper/indirection.h"
|
2019-01-17 20:17:16 +01:00
|
|
|
#include "../../feature/tmc_util.h"
|
|
|
|
|
2019-04-23 20:31:51 +02:00
|
|
|
#define TMC_EDIT_STORED_I_RMS(ST,MSG) MENU_ITEM_EDIT_CALLBACK(uint16_4, MSG, &stepper##ST.val_mA, 100, 3000, refresh_stepper_current_##ST)
|
2019-01-17 20:17:16 +01:00
|
|
|
|
|
|
|
#if AXIS_IS_TMC(X)
|
|
|
|
void refresh_stepper_current_X() { stepperX.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y)
|
|
|
|
void refresh_stepper_current_Y() { stepperY.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z)
|
|
|
|
void refresh_stepper_current_Z() { stepperZ.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
|
|
|
void refresh_stepper_current_X2() { stepperX2.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
|
|
|
void refresh_stepper_current_Y2() { stepperY2.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
|
|
|
void refresh_stepper_current_Z2() { stepperZ2.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
|
|
|
void refresh_stepper_current_Z3() { stepperZ3.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E0)
|
|
|
|
void refresh_stepper_current_E0() { stepperE0.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E1)
|
|
|
|
void refresh_stepper_current_E1() { stepperE1.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E2)
|
|
|
|
void refresh_stepper_current_E2() { stepperE2.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E3)
|
|
|
|
void refresh_stepper_current_E3() { stepperE3.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E4)
|
|
|
|
void refresh_stepper_current_E4() { stepperE4.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E5)
|
|
|
|
void refresh_stepper_current_E5() { stepperE5.refresh_stepper_current(); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void menu_tmc_current() {
|
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_TMC_DRIVERS);
|
|
|
|
#if AXIS_IS_TMC(X)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(X, MSG_X);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(Y, MSG_Y);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(Z, MSG_Z);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(X2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(X2, MSG_X2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Y2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(Y2, MSG_Y2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(Z2, MSG_Z2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(Z3)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(Z3, MSG_Z3);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E0)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(E0, MSG_E1);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E1)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(E1, MSG_E2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(E2, MSG_E3);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E3)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(E3, MSG_E4);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E4)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(E4, MSG_E5);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_IS_TMC(E5)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_I_RMS(E5, MSG_E6);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(HYBRID_THRESHOLD)
|
|
|
|
|
2019-04-23 20:31:51 +02:00
|
|
|
#define TMC_EDIT_STORED_HYBRID_THRS(ST, MSG) MENU_ITEM_EDIT_CALLBACK(uint8, MSG, &stepper##ST.stored.hybrid_thrs, 0, 255, refresh_hybrid_thrs_##ST);
|
2019-01-17 20:17:16 +01:00
|
|
|
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_X() { stepperX.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_Y() { stepperY.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_Z() { stepperZ.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X2)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_X2() { stepperX2.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y2)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_Y2() { stepperY2.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z2)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_Z2() { stepperZ2.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z3)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_Z3() { stepperZ3.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E0)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_E0() { stepperE0.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E1)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_E1() { stepperE1.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E2)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_E2() { stepperE2.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E3)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_E3() { stepperE3.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E4)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_E4() { stepperE4.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E5)
|
2019-05-26 01:22:12 +02:00
|
|
|
void refresh_hybrid_thrs_E5() { stepperE5.refresh_hybrid_thrs(); }
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void menu_tmc_hybrid_thrs() {
|
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_TMC_DRIVERS);
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(X, MSG_X);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(Y, MSG_Y);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(Z, MSG_Z);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(X2, MSG_X2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(Y2, MSG_Y2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(Z2, MSG_Z2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z3)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(Z3, MSG_Z3);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E0)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(E0, MSG_E1);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E1)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(E1, MSG_E2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(E2, MSG_E3);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E3)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(E3, MSG_E4);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E4)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(E4, MSG_E5);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E5)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STORED_HYBRID_THRS(E5, MSG_E6);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(SENSORLESS_HOMING)
|
|
|
|
|
2019-06-20 22:47:50 +02:00
|
|
|
#define TMC_EDIT_STORED_SGT(ST) MENU_ITEM_EDIT_CALLBACK(int4, MSG_##ST, &stepper##ST.stored.homing_thrs, stepper##ST.sgt_min, stepper##ST.sgt_max, refresh_homing_thrs_##ST);
|
2019-01-17 20:17:16 +01:00
|
|
|
|
|
|
|
#if X_SENSORLESS
|
|
|
|
void refresh_homing_thrs_X() { stepperX.refresh_homing_thrs(); }
|
|
|
|
#endif
|
2019-08-29 07:15:31 +02:00
|
|
|
#if X2_SENSORLESS
|
|
|
|
void refresh_homing_thrs_X2() { stepperX2.refresh_homing_thrs(); }
|
|
|
|
#endif
|
2019-01-17 20:17:16 +01:00
|
|
|
#if Y_SENSORLESS
|
|
|
|
void refresh_homing_thrs_Y() { stepperY.refresh_homing_thrs(); }
|
|
|
|
#endif
|
|
|
|
#if Z_SENSORLESS
|
|
|
|
void refresh_homing_thrs_Z() { stepperZ.refresh_homing_thrs(); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void menu_tmc_homing_thrs() {
|
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_TMC_DRIVERS);
|
|
|
|
#if X_SENSORLESS
|
|
|
|
TMC_EDIT_STORED_SGT(X);
|
|
|
|
#endif
|
2019-08-29 07:15:31 +02:00
|
|
|
#if X2_SENSORLESS
|
|
|
|
TMC_EDIT_STORED_SGT(X2);
|
|
|
|
#endif
|
2019-01-17 20:17:16 +01:00
|
|
|
#if Y_SENSORLESS
|
|
|
|
TMC_EDIT_STORED_SGT(Y);
|
|
|
|
#endif
|
|
|
|
#if Z_SENSORLESS
|
|
|
|
TMC_EDIT_STORED_SGT(Z);
|
|
|
|
#endif
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-01-21 06:54:57 +01:00
|
|
|
#if HAS_STEALTHCHOP
|
2019-01-17 20:17:16 +01:00
|
|
|
|
2019-04-23 20:31:51 +02:00
|
|
|
#define TMC_EDIT_STEP_MODE(ST, MSG) MENU_ITEM_EDIT_CALLBACK(bool, MSG, &stepper##ST.stored.stealthChop_enabled, refresh_stepping_mode_##ST)
|
2019-01-17 20:17:16 +01:00
|
|
|
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X)
|
|
|
|
void refresh_stepping_mode_X() { stepperX.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y)
|
|
|
|
void refresh_stepping_mode_Y() { stepperY.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z)
|
|
|
|
void refresh_stepping_mode_Z() { stepperZ.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X2)
|
|
|
|
void refresh_stepping_mode_X2() { stepperX2.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y2)
|
|
|
|
void refresh_stepping_mode_Y2() { stepperY2.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z2)
|
|
|
|
void refresh_stepping_mode_Z2() { stepperZ2.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z3)
|
|
|
|
void refresh_stepping_mode_Z3() { stepperZ3.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E0)
|
|
|
|
void refresh_stepping_mode_E0() { stepperE0.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E1)
|
|
|
|
void refresh_stepping_mode_E1() { stepperE1.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E2)
|
|
|
|
void refresh_stepping_mode_E2() { stepperE2.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E3)
|
|
|
|
void refresh_stepping_mode_E3() { stepperE3.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E4)
|
|
|
|
void refresh_stepping_mode_E4() { stepperE4.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E5)
|
|
|
|
void refresh_stepping_mode_E5() { stepperE5.refresh_stepping_mode(); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void menu_tmc_step_mode() {
|
|
|
|
START_MENU();
|
|
|
|
STATIC_ITEM(MSG_TMC_STEALTH_ENABLED);
|
|
|
|
MENU_BACK(MSG_TMC_DRIVERS);
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(X, MSG_X);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(Y, MSG_Y);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(Z, MSG_Z);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(X2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(X2, MSG_X2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Y2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(Y2, MSG_Y2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(Z2, MSG_Z2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(Z3)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(Z3, MSG_Z3);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E0)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(E0, MSG_E1);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E1)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(E1, MSG_E2);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E2)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(E2, MSG_E3);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E3)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(E3, MSG_E4);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E4)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(E4, MSG_E5);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
#if AXIS_HAS_STEALTHCHOP(E5)
|
2019-04-23 20:31:51 +02:00
|
|
|
TMC_EDIT_STEP_MODE(E5, MSG_E6);
|
2019-01-17 20:17:16 +01:00
|
|
|
#endif
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void menu_tmc() {
|
|
|
|
START_MENU();
|
|
|
|
MENU_BACK(MSG_CONTROL);
|
|
|
|
MENU_ITEM(submenu, MSG_TMC_CURRENT, menu_tmc_current);
|
|
|
|
#if ENABLED(HYBRID_THRESHOLD)
|
|
|
|
MENU_ITEM(submenu, MSG_TMC_HYBRID_THRS, menu_tmc_hybrid_thrs);
|
|
|
|
#endif
|
|
|
|
#if ENABLED(SENSORLESS_HOMING)
|
|
|
|
MENU_ITEM(submenu, MSG_TMC_HOMING_THRS, menu_tmc_homing_thrs);
|
|
|
|
#endif
|
2019-01-21 06:54:57 +01:00
|
|
|
#if HAS_STEALTHCHOP
|
2019-01-17 20:17:16 +01:00
|
|
|
MENU_ITEM(submenu, MSG_TMC_STEPPING_MODE, menu_tmc_step_mode);
|
|
|
|
#endif
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_TRINAMIC
|