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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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(U_STR, STR_U); PGMSTR(V_STR, STR_V); PGMSTR(W_STR, STR_W);
  32. PGMSTR(X_LBL, "X:"); PGMSTR(Y_LBL, "Y:"); PGMSTR(Z_LBL, "Z:"); PGMSTR(E_LBL, "E:");
  33. PGMSTR(U_LBL, STR_U ":"); PGMSTR(V_LBL, STR_V ":"); PGMSTR(W_LBL, STR_W ":");
  34. PGMSTR(SP_A_STR, " A"); PGMSTR(SP_B_STR, " B"); PGMSTR(SP_C_STR, " C");
  35. PGMSTR(SP_X_STR, " X"); PGMSTR(SP_Y_STR, " Y"); PGMSTR(SP_Z_STR, " Z"); PGMSTR(SP_E_STR, " E");
  36. PGMSTR(SP_X_LBL, " X:"); PGMSTR(SP_Y_LBL, " Y:"); PGMSTR(SP_Z_LBL, " Z:"); PGMSTR(SP_E_LBL, " E:");
  37. PGMSTR(I_STR, STR_I); PGMSTR(J_STR, STR_J); PGMSTR(K_STR, STR_K);
  38. PGMSTR(I_LBL, STR_I ":"); PGMSTR(J_LBL, STR_J ":"); PGMSTR(K_LBL, STR_K ":");
  39. PGMSTR(SP_I_STR, " " STR_I); PGMSTR(SP_J_STR, " " STR_J); PGMSTR(SP_K_STR, " " STR_K);
  40. PGMSTR(SP_U_STR, " " STR_U); PGMSTR(SP_V_STR, " " STR_V); PGMSTR(SP_W_STR, " " STR_W);
  41. PGMSTR(SP_I_LBL, " " STR_I ":"); PGMSTR(SP_J_LBL, " " STR_J ":"); PGMSTR(SP_K_LBL, " " STR_K ":");
  42. PGMSTR(SP_U_LBL, " " STR_U ":"); PGMSTR(SP_V_LBL, " " STR_V ":"); PGMSTR(SP_W_LBL, " " STR_W ":");
  43. // Hook Meatpack if it's enabled on the first leaf
  44. #if ENABLED(MEATPACK_ON_SERIAL_PORT_1)
  45. SerialLeafT1 mpSerial1(false, _SERIAL_LEAF_1);
  46. #endif
  47. #if ENABLED(MEATPACK_ON_SERIAL_PORT_2)
  48. SerialLeafT2 mpSerial2(false, _SERIAL_LEAF_2);
  49. #endif
  50. #if ENABLED(MEATPACK_ON_SERIAL_PORT_3)
  51. SerialLeafT3 mpSerial3(false, _SERIAL_LEAF_3);
  52. #endif
  53. // Step 2: For multiserial, handle the second serial port as well
  54. #if HAS_MULTI_SERIAL
  55. #if HAS_ETHERNET
  56. // We need a definition here
  57. SerialLeafT2 msSerial2(ethernet.have_telnet_client, MYSERIAL2, false);
  58. #endif
  59. #define __S_LEAF(N) ,SERIAL_LEAF_##N
  60. #define _S_LEAF(N) __S_LEAF(N)
  61. SerialOutputT multiSerial( SERIAL_LEAF_1 REPEAT_S(2, INCREMENT(NUM_SERIAL), _S_LEAF) );
  62. #undef __S_LEAF
  63. #undef _S_LEAF
  64. #endif
  65. void serial_print_P(PGM_P str) {
  66. while (const char c = pgm_read_byte(str++)) SERIAL_CHAR(c);
  67. }
  68. void serial_echo_start() { static PGMSTR(echomagic, "echo:"); serial_print_P(echomagic); }
  69. void serial_error_start() { static PGMSTR(errormagic, "Error:"); serial_print_P(errormagic); }
  70. void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) SERIAL_CHAR(' '); }
  71. void serial_offset(const_float_t v, const uint8_t sp/*=0*/) {
  72. if (v == 0 && sp == 1)
  73. SERIAL_CHAR(' ');
  74. else if (v > 0 || (v == 0 && sp == 2))
  75. SERIAL_CHAR('+');
  76. SERIAL_DECIMAL(v);
  77. }
  78. void serial_ternary(const bool onoff, FSTR_P const pre, FSTR_P const on, FSTR_P const off, FSTR_P const post/*=nullptr*/) {
  79. if (pre) serial_print(pre);
  80. serial_print(onoff ? on : off);
  81. if (post) serial_print(post);
  82. }
  83. void serialprint_onoff(const bool onoff) { serial_print(onoff ? F(STR_ON) : F(STR_OFF)); }
  84. void serialprintln_onoff(const bool onoff) { serialprint_onoff(onoff); SERIAL_EOL(); }
  85. void serialprint_truefalse(const bool tf) { serial_print(tf ? F("true") : F("false")); }
  86. void print_bin(uint16_t val) {
  87. for (uint8_t i = 16; i--;) {
  88. SERIAL_CHAR('0' + TEST(val, i));
  89. if (!(i & 0x3) && i) SERIAL_CHAR(' ');
  90. }
  91. }
  92. void print_pos(NUM_AXIS_ARGS(const_float_t), FSTR_P const prefix/*=nullptr*/, FSTR_P const suffix/*=nullptr*/) {
  93. if (prefix) serial_print(prefix);
  94. SERIAL_ECHOPGM_P(
  95. LIST_N(DOUBLE(NUM_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, SP_U_STR, u, SP_V_STR, v, SP_W_STR, w)
  96. );
  97. if (suffix) serial_print(suffix); else SERIAL_EOL();
  98. }