Shorten a method name

This commit is contained in:
Scott Lahteine
2020-10-22 20:54:11 -05:00
parent c7f7f2403d
commit c75e98dc84
4 changed files with 44 additions and 44 deletions

View File

@ -32,7 +32,7 @@ template<typename TMC>
void tmc_say_stealth_status(TMC &st) {
st.printLabel();
SERIAL_ECHOPGM(" driver mode:\t");
serialprintPGM(st.get_stealthChop_status() ? PSTR("stealthChop") : PSTR("spreadCycle"));
serialprintPGM(st.get_stealthChop() ? PSTR("stealthChop") : PSTR("spreadCycle"));
SERIAL_EOL();
}
template<typename TMC>