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 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #include "serial.h"
  23. #include "../inc/MarlinConfig.h"
  24. #if HAS_ETHERNET
  25. #include "../feature/ethernet.h"
  26. #endif
  27. uint8_t marlin_debug_flags = MARLIN_DEBUG_NONE;
  28. // Commonly-used strings in serial output
  29. PGMSTR(NUL_STR, ""); PGMSTR(SP_P_STR, " P"); PGMSTR(SP_T_STR, " T");
  30. PGMSTR(X_STR, "X"); PGMSTR(Y_STR, "Y"); PGMSTR(Z_STR, "Z"); PGMSTR(E_STR, "E");
  31. PGMSTR(X_LBL, "X:"); PGMSTR(Y_LBL, "Y:"); PGMSTR(Z_LBL, "Z:"); PGMSTR(E_LBL, "E:");
  32. PGMSTR(SP_A_STR, " A"); PGMSTR(SP_B_STR, " B"); PGMSTR(SP_C_STR, " C");
  33. PGMSTR(SP_X_STR, " X"); PGMSTR(SP_Y_STR, " Y"); PGMSTR(SP_Z_STR, " Z"); PGMSTR(SP_E_STR, " E");
  34. PGMSTR(SP_X_LBL, " X:"); PGMSTR(SP_Y_LBL, " Y:"); PGMSTR(SP_Z_LBL, " Z:"); PGMSTR(SP_E_LBL, " E:");
  35. PGMSTR(I_STR, AXIS4_STR); PGMSTR(J_STR, AXIS5_STR); PGMSTR(K_STR, AXIS6_STR);
  36. PGMSTR(I_LBL, AXIS4_STR ":"); PGMSTR(J_LBL, AXIS5_STR ":"); PGMSTR(K_LBL, AXIS6_STR ":");
  37. PGMSTR(SP_I_STR, " " AXIS4_STR); PGMSTR(SP_J_STR, " " AXIS5_STR); PGMSTR(SP_K_STR, " " AXIS6_STR);
  38. PGMSTR(SP_I_LBL, " " AXIS4_STR ":"); PGMSTR(SP_J_LBL, " " AXIS5_STR ":"); PGMSTR(SP_K_LBL, " " AXIS6_STR ":");
  39. // Hook Meatpack if it's enabled on the first leaf
  40. #if ENABLED(MEATPACK_ON_SERIAL_PORT_1)
  41. SerialLeafT1 mpSerial1(false, _SERIAL_LEAF_1);
  42. #endif
  43. #if ENABLED(MEATPACK_ON_SERIAL_PORT_2)
  44. SerialLeafT2 mpSerial2(false, _SERIAL_LEAF_2);
  45. #endif
  46. #if ENABLED(MEATPACK_ON_SERIAL_PORT_3)
  47. SerialLeafT3 mpSerial3(false, _SERIAL_LEAF_3);
  48. #endif
  49. // Step 2: For multiserial, handle the second serial port as well
  50. #if HAS_MULTI_SERIAL
  51. #if HAS_ETHERNET
  52. // We need a definition here
  53. SerialLeafT2 msSerial2(ethernet.have_telnet_client, MYSERIAL2, false);
  54. #endif
  55. #define __S_LEAF(N) ,SERIAL_LEAF_##N
  56. #define _S_LEAF(N) __S_LEAF(N)
  57. SerialOutputT multiSerial( SERIAL_LEAF_1 REPEAT_S(2, INCREMENT(NUM_SERIAL), _S_LEAF) );
  58. #undef __S_LEAF
  59. #undef _S_LEAF
  60. #endif
  61. void serial_print_P(PGM_P str) {
  62. while (const char c = pgm_read_byte(str++)) SERIAL_CHAR(c);
  63. }
  64. void serial_echo_start() { static PGMSTR(echomagic, "echo:"); serial_print_P(echomagic); }
  65. void serial_error_start() { static PGMSTR(errormagic, "Error:"); serial_print_P(errormagic); }
  66. void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) SERIAL_CHAR(' '); }
  67. void serial_ternary(const bool onoff, FSTR_P const pre, FSTR_P const on, FSTR_P const off, FSTR_P const post/*=nullptr*/) {
  68. if (pre) serial_print(pre);
  69. serial_print(onoff ? on : off);
  70. if (post) serial_print(post);
  71. }
  72. void serialprint_onoff(const bool onoff) { serial_print(onoff ? F(STR_ON) : F(STR_OFF)); }
  73. void serialprintln_onoff(const bool onoff) { serialprint_onoff(onoff); SERIAL_EOL(); }
  74. void serialprint_truefalse(const bool tf) { serial_print(tf ? F("true") : F("false")); }
  75. void print_bin(uint16_t val) {
  76. for (uint8_t i = 16; i--;) {
  77. SERIAL_CHAR('0' + TEST(val, i));
  78. if (!(i & 0x3) && i) SERIAL_CHAR(' ');
  79. }
  80. }
  81. void print_pos(LINEAR_AXIS_ARGS(const_float_t), FSTR_P const prefix/*=nullptr*/, FSTR_P const suffix/*=nullptr*/) {
  82. if (prefix) serial_print(prefix);
  83. SERIAL_ECHOPGM_P(
  84. LIST_N(DOUBLE(LINEAR_AXES), SP_X_STR, x, SP_Y_STR, y, SP_Z_STR, z, SP_I_STR, i, SP_J_STR, j, SP_K_STR, k)
  85. );
  86. if (suffix) serial_print(suffix); else SERIAL_EOL();
  87. }