My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ubl.cpp 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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 "Marlin.h"
  23. #include "math.h"
  24. #if ENABLED(AUTO_BED_LEVELING_UBL)
  25. #include "ubl.h"
  26. #include "hex_print_routines.h"
  27. #include "temperature.h"
  28. #include "planner.h"
  29. uint8_t ubl_cnt = 0;
  30. void unified_bed_leveling::echo_name() { SERIAL_PROTOCOLPGM("Unified Bed Leveling"); }
  31. void unified_bed_leveling::report_state() {
  32. echo_name();
  33. SERIAL_PROTOCOLPGM(" System v" UBL_VERSION " ");
  34. if (!planner.leveling_active) SERIAL_PROTOCOLPGM("in");
  35. SERIAL_PROTOCOLLNPGM("active.");
  36. safe_delay(50);
  37. }
  38. static void serial_echo_xy(const int16_t x, const int16_t y) {
  39. SERIAL_CHAR('(');
  40. SERIAL_ECHO(x);
  41. SERIAL_CHAR(',');
  42. SERIAL_ECHO(y);
  43. SERIAL_CHAR(')');
  44. safe_delay(10);
  45. }
  46. int8_t unified_bed_leveling::storage_slot;
  47. float unified_bed_leveling::z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
  48. // 15 is the maximum nubmer of grid points supported + 1 safety margin for now,
  49. // until determinism prevails
  50. constexpr float unified_bed_leveling::_mesh_index_to_xpos[16],
  51. unified_bed_leveling::_mesh_index_to_ypos[16];
  52. #if ENABLED(ULTIPANEL)
  53. bool unified_bed_leveling::lcd_map_control = false;
  54. #endif
  55. volatile int unified_bed_leveling::encoder_diff;
  56. unified_bed_leveling::unified_bed_leveling() {
  57. ubl_cnt++; // Debug counter to insure we only have one UBL object present in memory. We can eliminate this (and all references to ubl_cnt) very soon.
  58. reset();
  59. }
  60. void unified_bed_leveling::reset() {
  61. set_bed_leveling_enabled(false);
  62. storage_slot = -1;
  63. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  64. planner.set_z_fade_height(10.0);
  65. #endif
  66. ZERO(z_values);
  67. }
  68. void unified_bed_leveling::invalidate() {
  69. set_bed_leveling_enabled(false);
  70. set_all_mesh_points_to_value(NAN);
  71. }
  72. void unified_bed_leveling::set_all_mesh_points_to_value(const float value) {
  73. for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++) {
  74. for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++) {
  75. z_values[x][y] = value;
  76. }
  77. }
  78. }
  79. // display_map() currently produces three different mesh map types
  80. // 0 : suitable for PronterFace and Repetier's serial console
  81. // 1 : .CSV file suitable for importation into various spread sheets
  82. // 2 : disply of the map data on a RepRap Graphical LCD Panel
  83. void unified_bed_leveling::display_map(const int map_type) {
  84. constexpr uint8_t spaces = 8 * (GRID_MAX_POINTS_X - 2);
  85. SERIAL_PROTOCOLPGM("\nBed Topography Report");
  86. if (map_type == 0) {
  87. SERIAL_PROTOCOLPGM(":\n\n");
  88. serial_echo_xy(0, GRID_MAX_POINTS_Y - 1);
  89. SERIAL_ECHO_SP(spaces + 3);
  90. serial_echo_xy(GRID_MAX_POINTS_X - 1, GRID_MAX_POINTS_Y - 1);
  91. SERIAL_EOL();
  92. serial_echo_xy(MESH_MIN_X, MESH_MAX_Y);
  93. SERIAL_ECHO_SP(spaces);
  94. serial_echo_xy(MESH_MAX_X, MESH_MAX_Y);
  95. SERIAL_EOL();
  96. }
  97. else {
  98. SERIAL_PROTOCOLPGM(" for ");
  99. serialprintPGM(map_type == 1 ? PSTR("CSV:\n\n") : PSTR("LCD:\n\n"));
  100. }
  101. const float current_xi = get_cell_index_x(current_position[X_AXIS] + (MESH_X_DIST) / 2.0),
  102. current_yi = get_cell_index_y(current_position[Y_AXIS] + (MESH_Y_DIST) / 2.0);
  103. for (int8_t j = GRID_MAX_POINTS_Y - 1; j >= 0; j--) {
  104. for (uint8_t i = 0; i < GRID_MAX_POINTS_X; i++) {
  105. const bool is_current = i == current_xi && j == current_yi;
  106. // is the nozzle here? then mark the number
  107. if (map_type == 0) SERIAL_CHAR(is_current ? '[' : ' ');
  108. const float f = z_values[i][j];
  109. if (isnan(f)) {
  110. serialprintPGM(map_type == 0 ? PSTR(" . ") : PSTR("NAN"));
  111. }
  112. else if (map_type <= 1) {
  113. // if we don't do this, the columns won't line up nicely
  114. if (map_type == 0 && f >= 0.0) SERIAL_CHAR(' ');
  115. SERIAL_PROTOCOL_F(f, 3);
  116. }
  117. idle();
  118. if (map_type == 1 && i < GRID_MAX_POINTS_X - 1) SERIAL_CHAR(',');
  119. #if TX_BUFFER_SIZE > 0
  120. MYSERIAL.flushTX();
  121. #endif
  122. safe_delay(15);
  123. if (map_type == 0) {
  124. SERIAL_CHAR(is_current ? ']' : ' ');
  125. SERIAL_CHAR(' ');
  126. }
  127. }
  128. SERIAL_EOL();
  129. if (j && map_type == 0) { // we want the (0,0) up tight against the block of numbers
  130. SERIAL_CHAR(' ');
  131. SERIAL_EOL();
  132. }
  133. }
  134. if (map_type == 0) {
  135. serial_echo_xy(MESH_MIN_X, MESH_MIN_Y);
  136. SERIAL_ECHO_SP(spaces + 4);
  137. serial_echo_xy(MESH_MAX_X, MESH_MIN_Y);
  138. SERIAL_EOL();
  139. serial_echo_xy(0, 0);
  140. SERIAL_ECHO_SP(spaces + 5);
  141. serial_echo_xy(GRID_MAX_POINTS_X - 1, 0);
  142. SERIAL_EOL();
  143. }
  144. }
  145. bool unified_bed_leveling::sanity_check() {
  146. uint8_t error_flag = 0;
  147. if (settings.calc_num_meshes() < 1) {
  148. SERIAL_PROTOCOLLNPGM("?Insufficient EEPROM storage for a mesh of this size.");
  149. error_flag++;
  150. }
  151. return !!error_flag;
  152. }
  153. #endif // AUTO_BED_LEVELING_UBL