Fix inline AnycubicSerial method

This commit is contained in:
Scott Lahteine 2020-07-21 05:41:10 -05:00
parent 6027055695
commit 2119e19bff
1 changed files with 3 additions and 3 deletions

View File

@ -131,10 +131,10 @@ const char newSucc[] PROGMEM = "OK";
#define ANYCUBIC_SERIAL_ECHO(x) ANYCUBIC_SERIAL_PROTOCOL(x)
FORCE_INLINE void AnycubicSerialprintPGM(const char *str) {
char ch=pgm_read_byte(str);
char ch = pgm_read_byte(str);
while (ch) {
AnycubicSerial.write(ch);
ch=pgm_read_byte(++str);
AnycubicSerialClass::write(ch);
ch = pgm_read_byte(++str);
}
}