2017-04-02 01:04:54 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-04-02 01:04:54 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-04-02 01:04:54 -05:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "serial.h"
|
2018-11-12 17:04:00 -06:00
|
|
|
#include "language.h"
|
2017-04-02 01:04:54 -05:00
|
|
|
|
2018-11-05 22:48:28 -06:00
|
|
|
uint8_t marlin_debug_flags = MARLIN_DEBUG_NONE;
|
2017-09-07 22:08:13 -05:00
|
|
|
|
2018-11-17 22:21:44 -06:00
|
|
|
static const char errormagic[] PROGMEM = "Error:";
|
|
|
|
static const char echomagic[] PROGMEM = "echo:";
|
2017-04-02 01:04:54 -05:00
|
|
|
|
2017-11-05 08:49:38 -06:00
|
|
|
#if NUM_SERIAL > 1
|
2020-01-26 22:46:26 -06:00
|
|
|
int8_t serial_port_index = 0;
|
2017-11-05 08:49:38 -06:00
|
|
|
#endif
|
2017-09-06 06:28:32 -05:00
|
|
|
|
2018-09-30 23:44:33 -05:00
|
|
|
void serialprintPGM(PGM_P str) {
|
2019-02-23 22:53:01 -06:00
|
|
|
while (const char c = pgm_read_byte(str++)) SERIAL_CHAR(c);
|
2017-09-06 06:28:32 -05:00
|
|
|
}
|
2018-11-12 17:04:00 -06:00
|
|
|
void serial_echo_start() { serialprintPGM(echomagic); }
|
|
|
|
void serial_error_start() { serialprintPGM(errormagic); }
|
|
|
|
|
2018-11-29 16:58:58 -06:00
|
|
|
void serial_echopair_PGM(PGM_P const s_P, const char *v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
|
|
|
void serial_echopair_PGM(PGM_P const s_P, char v) { serialprintPGM(s_P); SERIAL_CHAR(v); }
|
|
|
|
void serial_echopair_PGM(PGM_P const s_P, int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
|
|
|
void serial_echopair_PGM(PGM_P const s_P, long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
|
|
|
void serial_echopair_PGM(PGM_P const s_P, float v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
|
|
|
void serial_echopair_PGM(PGM_P const s_P, double v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
|
|
|
void serial_echopair_PGM(PGM_P const s_P, unsigned int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
|
|
|
void serial_echopair_PGM(PGM_P const s_P, unsigned long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
|
2017-04-28 17:15:39 -05:00
|
|
|
|
2017-11-05 08:49:38 -06:00
|
|
|
void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) SERIAL_CHAR(' '); }
|
2017-09-07 22:08:13 -05:00
|
|
|
|
2019-05-09 11:45:55 -05:00
|
|
|
void serial_ternary(const bool onoff, PGM_P const pre, PGM_P const on, PGM_P const off, PGM_P const post/*=nullptr*/) {
|
2019-04-05 20:02:46 -05:00
|
|
|
if (pre) serialprintPGM(pre);
|
|
|
|
serialprintPGM(onoff ? on : off);
|
|
|
|
if (post) serialprintPGM(post);
|
|
|
|
}
|
2020-02-26 03:02:03 -06:00
|
|
|
void serialprint_onoff(const bool onoff) { serialprintPGM(onoff ? PSTR(STR_ON) : PSTR(STR_OFF)); }
|
2018-11-12 17:04:00 -06:00
|
|
|
void serialprintln_onoff(const bool onoff) { serialprint_onoff(onoff); SERIAL_EOL(); }
|
2019-04-05 20:02:46 -05:00
|
|
|
void serialprint_truefalse(const bool tf) { serialprintPGM(tf ? PSTR("true") : PSTR("false")); }
|
2018-10-07 15:32:15 -05:00
|
|
|
|
2020-01-13 18:47:30 -06:00
|
|
|
void print_bin(uint16_t val) {
|
2019-03-01 19:29:48 -06:00
|
|
|
for (uint8_t i = 16; i--;) {
|
2020-01-13 18:47:30 -06:00
|
|
|
SERIAL_CHAR('0' + TEST(val, i));
|
|
|
|
if (!(i & 0x3) && i) SERIAL_CHAR(' ');
|
2019-03-01 19:29:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-29 04:45:07 -06:00
|
|
|
extern const char SP_X_STR[], SP_Y_STR[], SP_Z_STR[];
|
|
|
|
|
2019-09-29 04:25:39 -05:00
|
|
|
void print_xyz(const float &x, const float &y, const float &z, PGM_P const prefix/*=nullptr*/, PGM_P const suffix/*=nullptr*/) {
|
2019-04-03 20:41:11 -05:00
|
|
|
serialprintPGM(prefix);
|
2019-11-29 04:45:07 -06:00
|
|
|
SERIAL_ECHOPAIR_P(SP_X_STR, x, SP_Y_STR, y, SP_Z_STR, z);
|
2019-04-03 20:41:11 -05:00
|
|
|
if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
|
|
|
|
}
|