2017-04-02 01:04:54 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-02-12 15:06:53 -06:00
|
|
|
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-04-02 01:04:54 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* 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
|
2019-02-23 22:53:01 -06:00
|
|
|
int8_t serial_port_index = SERIAL_PORT;
|
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
|
|
|
|
2018-11-12 17:04:00 -06:00
|
|
|
void serialprint_onoff(const bool onoff) { serialprintPGM(onoff ? PSTR(MSG_ON) : PSTR(MSG_OFF)); }
|
|
|
|
void serialprintln_onoff(const bool onoff) { serialprint_onoff(onoff); SERIAL_EOL(); }
|
2018-10-07 15:32:15 -05:00
|
|
|
|
2019-03-01 19:29:48 -06:00
|
|
|
void print_bin(const uint16_t val) {
|
|
|
|
uint16_t mask = 0x8000;
|
|
|
|
for (uint8_t i = 16; i--;) {
|
|
|
|
if (i && !(i % 4)) SERIAL_CHAR(' ');
|
|
|
|
SERIAL_CHAR((val & mask) ? '1' : '0');
|
|
|
|
mask >>= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-07 22:08:13 -05:00
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
|
|
|
|
2018-06-27 22:39:59 -05:00
|
|
|
#include "enum.h"
|
|
|
|
|
2018-11-29 16:58:58 -06:00
|
|
|
void print_xyz(PGM_P const prefix, PGM_P const suffix, const float x, const float y, const float z) {
|
2017-09-07 22:08:13 -05:00
|
|
|
serialprintPGM(prefix);
|
|
|
|
SERIAL_CHAR('(');
|
|
|
|
SERIAL_ECHO(x);
|
2019-03-05 06:46:19 -06:00
|
|
|
SERIAL_ECHOPAIR(", ", y, ", ", z);
|
2017-09-07 22:08:13 -05:00
|
|
|
SERIAL_CHAR(')');
|
|
|
|
if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
|
|
|
|
}
|
|
|
|
|
2018-11-29 16:58:58 -06:00
|
|
|
void print_xyz(PGM_P const prefix, PGM_P const suffix, const float xyz[]) {
|
2017-09-07 22:08:13 -05:00
|
|
|
print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|