2017-09-06 06:28:31 -05: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-17 18:34:04 -05:00
|
|
|
#include "../../../inc/MarlinConfig.h"
|
|
|
|
|
2017-12-15 15:03:14 -06:00
|
|
|
#if HAS_TRINAMIC
|
2017-09-17 18:34:04 -05:00
|
|
|
|
|
|
|
#include "../../gcode.h"
|
2017-12-15 15:03:14 -06:00
|
|
|
#include "../../../feature/tmc_util.h"
|
2017-09-17 18:34:04 -05:00
|
|
|
#include "../../../module/stepper_indirection.h"
|
2017-09-06 06:28:31 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* M906: Set motor current in milliamps using axis codes X, Y, Z, E
|
|
|
|
* Report driver currents when no axis specified
|
|
|
|
*/
|
2017-12-29 13:38:08 -06:00
|
|
|
void GcodeSuite::M906() {
|
2018-03-14 05:43:18 -05:00
|
|
|
#define TMC_SAY_CURRENT(Q) tmc_get_current(stepper##Q, TMC_##Q)
|
|
|
|
#define TMC_SET_CURRENT(Q) tmc_set_current(stepper##Q, TMC_##Q, value)
|
2018-01-09 19:14:07 -06:00
|
|
|
|
2018-03-14 05:43:18 -05:00
|
|
|
bool report = true;
|
2018-03-14 07:25:27 -05:00
|
|
|
const uint8_t index = parser.byteval('I');
|
2018-03-14 05:43:18 -05:00
|
|
|
LOOP_XYZE(i) if (uint16_t value = parser.intval(axis_codes[i])) {
|
|
|
|
report = false;
|
|
|
|
switch (i) {
|
|
|
|
case X_AXIS:
|
|
|
|
#if X_IS_TRINAMIC
|
2018-03-14 07:25:27 -05:00
|
|
|
if (index == 0) TMC_SET_CURRENT(X);
|
2018-03-14 05:43:18 -05:00
|
|
|
#endif
|
|
|
|
#if X2_IS_TRINAMIC
|
2018-03-14 07:25:27 -05:00
|
|
|
if (index == 1) TMC_SET_CURRENT(X2);
|
2018-03-14 05:43:18 -05:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case Y_AXIS:
|
|
|
|
#if Y_IS_TRINAMIC
|
2018-03-14 07:25:27 -05:00
|
|
|
if (index == 0) TMC_SET_CURRENT(Y);
|
2018-03-14 05:43:18 -05:00
|
|
|
#endif
|
|
|
|
#if Y2_IS_TRINAMIC
|
2018-03-14 07:25:27 -05:00
|
|
|
if (index == 1) TMC_SET_CURRENT(Y2);
|
2018-03-14 05:43:18 -05:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case Z_AXIS:
|
|
|
|
#if Z_IS_TRINAMIC
|
2018-03-14 07:25:27 -05:00
|
|
|
if (index == 0) TMC_SET_CURRENT(Z);
|
2018-03-14 05:43:18 -05:00
|
|
|
#endif
|
|
|
|
#if Z2_IS_TRINAMIC
|
2018-03-14 07:25:27 -05:00
|
|
|
if (index == 1) TMC_SET_CURRENT(Z2);
|
2018-03-14 05:43:18 -05:00
|
|
|
#endif
|
|
|
|
break;
|
2018-03-14 07:25:27 -05:00
|
|
|
case E_AXIS: {
|
|
|
|
if (get_target_extruder_from_command()) return;
|
|
|
|
switch (target_extruder) {
|
|
|
|
#if E0_IS_TRINAMIC
|
|
|
|
case 0: TMC_SET_CURRENT(E0); break;
|
|
|
|
#endif
|
|
|
|
#if E1_IS_TRINAMIC
|
|
|
|
case 1: TMC_SET_CURRENT(E1); break;
|
|
|
|
#endif
|
|
|
|
#if E2_IS_TRINAMIC
|
|
|
|
case 2: TMC_SET_CURRENT(E2); break;
|
|
|
|
#endif
|
|
|
|
#if E3_IS_TRINAMIC
|
|
|
|
case 3: TMC_SET_CURRENT(E3); break;
|
|
|
|
#endif
|
|
|
|
#if E4_IS_TRINAMIC
|
|
|
|
case 4: TMC_SET_CURRENT(E4); break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} break;
|
2018-03-14 05:43:18 -05:00
|
|
|
}
|
|
|
|
}
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2018-03-14 05:43:18 -05:00
|
|
|
if (report) LOOP_XYZE(i) switch (i) {
|
|
|
|
case X_AXIS:
|
|
|
|
#if X_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(X);
|
|
|
|
#endif
|
|
|
|
#if X2_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(X2);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case Y_AXIS:
|
|
|
|
#if Y_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(Y);
|
|
|
|
#endif
|
|
|
|
#if Y2_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(Y2);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case Z_AXIS:
|
|
|
|
#if Z_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(Z);
|
|
|
|
#endif
|
|
|
|
#if Z2_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(Z2);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case E_AXIS:
|
|
|
|
#if E0_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(E0);
|
|
|
|
#endif
|
|
|
|
#if E1_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(E1);
|
|
|
|
#endif
|
|
|
|
#if E2_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(E2);
|
|
|
|
#endif
|
|
|
|
#if E3_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(E3);
|
|
|
|
#endif
|
|
|
|
#if E4_IS_TRINAMIC
|
|
|
|
TMC_SAY_CURRENT(E4);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
2017-09-17 18:34:04 -05:00
|
|
|
|
2017-12-15 15:03:14 -06:00
|
|
|
#endif // HAS_TRINAMIC
|