Browse Source
Merge pull request #9189 from psavva/tmc_debug_compile_fix
[2.0.x] Fixes TMC_DEBUG compilation error
pull/1/head
Scott Lahteine
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
Marlin/src/feature/tmc_util.cpp
|
|
@ -376,7 +376,10 @@ void _tmc_say_sgt(const char name[], const uint32_t sgt) { |
|
|
|
break; |
|
|
|
case TMC_TPWMTHRS_MMS: { |
|
|
|
uint32_t tpwmthrs_val = st.TPWMTHRS(); |
|
|
|
tpwmthrs_val ? SERIAL_ECHO(12650000UL * st.microsteps() / (256 * tpwmthrs_val * spmm)) : SERIAL_CHAR('-'); |
|
|
|
if (tpwmthrs_val) |
|
|
|
SERIAL_ECHO(12650000UL * st.microsteps() / (256 * tpwmthrs_val * spmm)); |
|
|
|
else |
|
|
|
SERIAL_CHAR('-'); |
|
|
|
} |
|
|
|
break; |
|
|
|
case TMC_OTPW: serialprintPGM(st.otpw() ? PSTR("true") : PSTR("false")); break; |
|
|
|