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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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(SP_A_STR, " A"); PGMSTR(SP_B_STR, " B"); PGMSTR(SP_C_STR, " C");
  30. PGMSTR(SP_P_STR, " P"); PGMSTR(SP_T_STR, " T"); PGMSTR(NUL_STR, "");
  31. #define _N_STR(N) PGMSTR(N##_STR, STR_##N);
  32. #define _N_LBL(N) PGMSTR(N##_LBL, STR_##N ":");
  33. #define _SP_N_STR(N) PGMSTR(SP_##N##_STR, " " STR_##N);
  34. #define _SP_N_LBL(N) PGMSTR(SP_##N##_LBL, " " STR_##N ":");
  35. MAP(_N_STR, LOGICAL_AXIS_NAMES); MAP(_SP_N_STR, LOGICAL_AXIS_NAMES);
  36. MAP(_N_LBL, LOGICAL_AXIS_NAMES); MAP(_SP_N_LBL, LOGICAL_AXIS_NAMES);
  37. // Hook Meatpack if it's enabled on the first leaf
  38. #if ENABLED(MEATPACK_ON_SERIAL_PORT_1)
  39. SerialLeafT1 mpSerial1(false, _SERIAL_LEAF_1);
  40. #endif
  41. #if ENABLED(MEATPACK_ON_SERIAL_PORT_2)
  42. SerialLeafT2 mpSerial2(false, _SERIAL_LEAF_2);
  43. #endif
  44. #if ENABLED(MEATPACK_ON_SERIAL_PORT_3)
  45. SerialLeafT3 mpSerial3(false, _SERIAL_LEAF_3);
  46. #endif
  47. // Step 2: For multiserial, handle the second serial port as well
  48. #if HAS_MULTI_SERIAL
  49. #if HAS_ETHERNET
  50. // We need a definition here
  51. SerialLeafT2 msSerial2(ethernet.have_telnet_client, MYSERIAL2, false);
  52. #endif
  53. #define __S_LEAF(N) ,SERIAL_LEAF_##N
  54. #define _S_LEAF(N) __S_LEAF(N)
  55. SerialOutputT multiSerial( SERIAL_LEAF_1 REPEAT_S(2, INCREMENT(NUM_SERIAL), _S_LEAF) );
  56. #undef __S_LEAF
  57. #undef _S_LEAF
  58. #endif
  59. void serial_print_P(PGM_P str) {
  60. while (const char c = pgm_read_byte(str++)) SERIAL_CHAR(c);
  61. }
  62. void serial_echo_start() { serial_print(F("echo:")); }
  63. void serial_error_start() { serial_print(F("Error:")); }
  64. void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) SERIAL_CHAR(' '); }
  65. void serial_offset(const_float_t v, const uint8_t sp/*=0*/) {
  66. if (v == 0 && sp == 1)
  67. SERIAL_CHAR(' ');
  68. else if (v > 0 || (v == 0 && sp == 2))
  69. SERIAL_CHAR('+');
  70. SERIAL_DECIMAL(v);
  71. }
  72. void serial_ternary(const bool onoff, FSTR_P const pre, FSTR_P const on, FSTR_P const off, FSTR_P const post/*=nullptr*/) {
  73. if (pre) serial_print(pre);
  74. serial_print(onoff ? on : off);
  75. if (post) serial_print(post);
  76. }
  77. void serialprint_onoff(const bool onoff) { serial_print(onoff ? F(STR_ON) : F(STR_OFF)); }
  78. void serialprintln_onoff(const bool onoff) { serialprint_onoff(onoff); SERIAL_EOL(); }
  79. void serialprint_truefalse(const bool tf) { serial_print(tf ? F("true") : F("false")); }
  80. void print_bin(uint16_t val) {
  81. for (uint8_t i = 16; i--;) {
  82. SERIAL_CHAR('0' + TEST(val, i));
  83. if (!(i & 0x3) && i) SERIAL_CHAR(' ');
  84. }
  85. }
  86. void print_pos(NUM_AXIS_ARGS(const_float_t), FSTR_P const prefix/*=nullptr*/, FSTR_P const suffix/*=nullptr*/) {
  87. if (prefix) serial_print(prefix);
  88. SERIAL_ECHOPGM_P(
  89. 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)
  90. );
  91. if (suffix) serial_print(suffix); else SERIAL_EOL();
  92. }