|
|
|
@ -260,8 +260,8 @@ extern uint8_t marlin_debug_flags;
|
|
|
|
|
#define SERIAL_ERROR_START() serial_error_start()
|
|
|
|
|
#define SERIAL_EOL() SERIAL_CHAR('\n')
|
|
|
|
|
|
|
|
|
|
#define SERIAL_ECHO_MSG(S) do{ SERIAL_ECHO_START(); SERIAL_ECHOLNPGM(S); }while(0)
|
|
|
|
|
#define SERIAL_ERROR_MSG(S) do{ SERIAL_ERROR_START(); SERIAL_ECHOLNPGM(S); }while(0)
|
|
|
|
|
#define SERIAL_ECHO_MSG(V...) do{ SERIAL_ECHO_START(); SERIAL_ECHOLNPAIR(V); }while(0)
|
|
|
|
|
#define SERIAL_ERROR_MSG(V...) do{ SERIAL_ERROR_START(); SERIAL_ECHOLNPAIR(V); }while(0)
|
|
|
|
|
|
|
|
|
|
#define SERIAL_ECHO_SP(C) serial_spaces(C)
|
|
|
|
|
|
|
|
|
@ -292,7 +292,6 @@ void serialprint_truefalse(const bool tf);
|
|
|
|
|
void serial_spaces(uint8_t count);
|
|
|
|
|
|
|
|
|
|
void print_bin(const uint16_t val);
|
|
|
|
|
|
|
|
|
|
void print_xyz(const float &x, const float &y, const float &z, PGM_P const prefix=nullptr, PGM_P const suffix=nullptr);
|
|
|
|
|
|
|
|
|
|
inline void print_xyz(const xyz_pos_t &xyz, PGM_P const prefix=nullptr, PGM_P const suffix=nullptr) {
|
|
|
|
|