Fix G28 debug line, M569 calls (#16213)
This commit is contained in:
parent
9d6b2ebf50
commit
6e8dcba698
1 changed files with 3 additions and 3 deletions
|
@ -262,7 +262,7 @@ void GcodeSuite::G28(const bool always_home_all) {
|
||||||
|
|
||||||
#if HAS_HOMING_CURRENT
|
#if HAS_HOMING_CURRENT
|
||||||
auto debug_current = [](const char * const s, const int16_t a, const int16_t b){
|
auto debug_current = [](const char * const s, const int16_t a, const int16_t b){
|
||||||
DEBUG_ECHO(s); DEBUG_ECHOLNPGM(" current: ", a, " -> ", b);
|
DEBUG_ECHO(s); DEBUG_ECHOLNPAIR(" current: ", a, " -> ", b);
|
||||||
};
|
};
|
||||||
#if HAS_CURRENT_HOME(X)
|
#if HAS_CURRENT_HOME(X)
|
||||||
const int16_t tmc_save_current_X = stepperX.getMilliamps();
|
const int16_t tmc_save_current_X = stepperX.getMilliamps();
|
||||||
|
|
Reference in a new issue