|
@@ -68,7 +68,7 @@ void print_bin(uint16_t val) {
|
68
|
68
|
extern const char SP_X_STR[], SP_Y_STR[], SP_Z_STR[];
|
69
|
69
|
|
70
|
70
|
void print_xyz(const float &x, const float &y, const float &z, PGM_P const prefix/*=nullptr*/, PGM_P const suffix/*=nullptr*/) {
|
71
|
|
- serialprintPGM(prefix);
|
|
71
|
+ if (prefix) serialprintPGM(prefix);
|
72
|
72
|
SERIAL_ECHOPAIR_P(SP_X_STR, x, SP_Y_STR, y, SP_Z_STR, z);
|
73
|
73
|
if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
|
74
|
74
|
}
|