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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. uint8_t marlin_debug_flags = MARLIN_DEBUG_NONE;
  25. static const char errormagic[] PROGMEM = "Error:";
  26. static const char echomagic[] PROGMEM = "echo:";
  27. #if NUM_SERIAL > 1
  28. int8_t serial_port_index = SERIAL_PORT;
  29. #endif
  30. void serialprintPGM(PGM_P str) {
  31. while (const char c = pgm_read_byte(str++)) SERIAL_CHAR(c);
  32. }
  33. void serial_echo_start() { serialprintPGM(echomagic); }
  34. void serial_error_start() { serialprintPGM(errormagic); }
  35. void serial_echopair_PGM(PGM_P const s_P, const char *v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  36. void serial_echopair_PGM(PGM_P const s_P, char v) { serialprintPGM(s_P); SERIAL_CHAR(v); }
  37. void serial_echopair_PGM(PGM_P const s_P, int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  38. void serial_echopair_PGM(PGM_P const s_P, long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  39. void serial_echopair_PGM(PGM_P const s_P, float v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  40. void serial_echopair_PGM(PGM_P const s_P, double v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  41. void serial_echopair_PGM(PGM_P const s_P, unsigned int v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  42. void serial_echopair_PGM(PGM_P const s_P, unsigned long v) { serialprintPGM(s_P); SERIAL_ECHO(v); }
  43. void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) SERIAL_CHAR(' '); }
  44. void serialprint_onoff(const bool onoff) { serialprintPGM(onoff ? PSTR(MSG_ON) : PSTR(MSG_OFF)); }
  45. void serialprintln_onoff(const bool onoff) { serialprint_onoff(onoff); SERIAL_EOL(); }
  46. void print_bin(const uint16_t val) {
  47. uint16_t mask = 0x8000;
  48. for (uint8_t i = 16; i--;) {
  49. if (i && !(i % 4)) SERIAL_CHAR(' ');
  50. SERIAL_CHAR((val & mask) ? '1' : '0');
  51. mask >>= 1;
  52. }
  53. }
  54. #if ENABLED(DEBUG_LEVELING_FEATURE)
  55. #include "enum.h"
  56. void print_xyz(PGM_P const prefix, PGM_P const suffix, const float x, const float y, const float z) {
  57. serialprintPGM(prefix);
  58. SERIAL_CHAR('(');
  59. SERIAL_ECHO(x);
  60. SERIAL_ECHOPAIR(", ", y, ", ", z);
  61. SERIAL_CHAR(')');
  62. if (suffix) serialprintPGM(suffix); else SERIAL_EOL();
  63. }
  64. void print_xyz(PGM_P const prefix, PGM_P const suffix, const float xyz[]) {
  65. print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
  66. }
  67. #endif