My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

serial.cpp 3.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #include "serial.h"
  23. #include "language.h"
  24. #include "enum.h"
  25. uint8_t marlin_debug_flags = MARLIN_DEBUG_NONE;
  26. static const char errormagic[] PROGMEM = "Error:";
  27. static const char echomagic[] PROGMEM = "echo:";
  28. #if NUM_SERIAL > 1
  29. int8_t serial_port_index = SERIAL_PORT;
  30. #endif
  31. void serialprintPGM(PGM_P str) {
  32. while (const char c = pgm_read_byte(str++)) SERIAL_CHAR(c);
  33. }
  34. void serial_echo_start() { serialprintPGM(echomagic); }
  35. void serial_error_start() { serialprintPGM(errormagic); }
  36. void serial_echopair_PGM(PGM_P const s_P, const char *v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  37. void serial_echopair_PGM(PGM_P const s_P, char v) { serialprintPGM(s_P); SERIAL_CHAR(v); }
  38. void serial_echopair_PGM(PGM_P const s_P, int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  39. void serial_echopair_PGM(PGM_P const s_P, long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  40. void serial_echopair_PGM(PGM_P const s_P, float v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  41. void serial_echopair_PGM(PGM_P const s_P, double v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  42. void serial_echopair_PGM(PGM_P const s_P, unsigned int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  43. void serial_echopair_PGM(PGM_P const s_P, unsigned long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  44. void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) SERIAL_CHAR(' '); }
  45. void serial_ternary(const bool onoff, PGM_P const pre, PGM_P const on, PGM_P const off, PGM_P const post/*=nullptr*/) {
  46. if (pre) serialprintPGM(pre);
  47. serialprintPGM(onoff ? on : off);
  48. if (post) serialprintPGM(post);
  49. }
  50. void serialprint_onoff(const bool onoff) { serialprintPGM(onoff ? PSTR(MSG_ON) : PSTR(MSG_OFF)); }
  51. void serialprintln_onoff(const bool onoff) { serialprint_onoff(onoff); SERIAL_EOL(); }
  52. void serialprint_truefalse(const bool tf) { serialprintPGM(tf ? PSTR("true") : PSTR("false")); }
  53. void print_bin(const uint16_t val) {
  54. uint16_t mask = 0x8000;
  55. for (uint8_t i = 16; i--;) {
  56. if (i && !(i % 4)) SERIAL_CHAR(' ');
  57. SERIAL_CHAR((val & mask) ? '1' : '0');
  58. mask >>= 1;
  59. }
  60. }
  61. void print_xyz(PGM_P const prefix, PGM_P const suffix, const float x, const float y, const float z) {
  62. serialprintPGM(prefix);
  63. SERIAL_CHAR('(');
  64. SERIAL_ECHO(x);
  65. SERIAL_ECHOPAIR(", ", y, ", ", z);
  66. SERIAL_CHAR(')');
  67. if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
  68. }
  69. void print_xyz(PGM_P const prefix, PGM_P const suffix, const float xyz[]) {
  70. print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
  71. }