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.

G26_Mesh_Validation_Tool.cpp 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866
  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. /**
  23. * Marlin Firmware -- G26 - Mesh Validation Tool
  24. */
  25. #include "MarlinConfig.h"
  26. #if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(UBL_G26_MESH_EDITING)
  27. #include "ubl.h"
  28. #include "Marlin.h"
  29. #include "planner.h"
  30. #include "stepper.h"
  31. #include "temperature.h"
  32. #include "ultralcd.h"
  33. #define EXTRUSION_MULTIPLIER 1.0
  34. #define RETRACTION_MULTIPLIER 1.0
  35. #define NOZZLE 0.4
  36. #define FILAMENT 1.75
  37. #define LAYER_HEIGHT 0.2
  38. #define PRIME_LENGTH 10.0
  39. #define BED_TEMP 60.0
  40. #define HOTEND_TEMP 205.0
  41. #define OOZE_AMOUNT 0.3
  42. #define SIZE_OF_INTERSECTION_CIRCLES 5
  43. #define SIZE_OF_CROSSHAIRS 3
  44. #if SIZE_OF_CROSSHAIRS >= SIZE_OF_INTERSECTION_CIRCLES
  45. #error "SIZE_OF_CROSSHAIRS must be less than SIZE_OF_INTERSECTION_CIRCLES."
  46. #endif
  47. /**
  48. * G26 Mesh Validation Tool
  49. *
  50. * G26 is a Mesh Validation Tool intended to provide support for the Marlin Unified Bed Leveling System.
  51. * In order to fully utilize and benefit from the Marlin Unified Bed Leveling System an accurate Mesh must
  52. * be defined. G29 is designed to allow the user to quickly validate the correctness of her Mesh. It will
  53. * first heat the bed and nozzle. It will then print lines and circles along the Mesh Cell boundaries and
  54. * the intersections of those lines (respectively).
  55. *
  56. * This action allows the user to immediately see where the Mesh is properly defined and where it needs to
  57. * be edited. The command will generate the Mesh lines closest to the nozzle's starting position. Alternatively
  58. * the user can specify the X and Y position of interest with command parameters. This allows the user to
  59. * focus on a particular area of the Mesh where attention is needed.
  60. *
  61. * B # Bed Set the Bed Temperature. If not specified, a default of 60 C. will be assumed.
  62. *
  63. * C Current When searching for Mesh Intersection points to draw, use the current nozzle location
  64. * as the base for any distance comparison.
  65. *
  66. * D Disable Disable the Unified Bed Leveling System. In the normal case the user is invoking this
  67. * command to see how well a Mesh as been adjusted to match a print surface. In order to do
  68. * this the Unified Bed Leveling System is turned on by the G26 command. The D parameter
  69. * alters the command's normal behaviour and disables the Unified Bed Leveling System even if
  70. * it is on.
  71. *
  72. * H # Hotend Set the Nozzle Temperature. If not specified, a default of 205 C. will be assumed.
  73. *
  74. * F # Filament Used to specify the diameter of the filament being used. If not specified
  75. * 1.75mm filament is assumed. If you are not getting acceptable results by using the
  76. * 'correct' numbers, you can scale this number up or down a little bit to change the amount
  77. * of filament that is being extruded during the printing of the various lines on the bed.
  78. *
  79. * K Keep-On Keep the heaters turned on at the end of the command.
  80. *
  81. * L # Layer Layer height. (Height of nozzle above bed) If not specified .20mm will be used.
  82. *
  83. * Q # Multiplier Retraction Multiplier. Normally not needed. Retraction defaults to 1.0mm and
  84. * un-retraction is at 1.2mm These numbers will be scaled by the specified amount
  85. *
  86. * N # Nozzle Used to control the size of nozzle diameter. If not specified, a .4mm nozzle is assumed.
  87. *
  88. * O # Ooooze How much your nozzle will Ooooze filament while getting in position to print. This
  89. * is over kill, but using this parameter will let you get the very first 'cicle' perfect
  90. * so you have a trophy to peel off of the bed and hang up to show how perfectly you have your
  91. * Mesh calibrated. If not specified, a filament length of .3mm is assumed.
  92. *
  93. * P # Prime Prime the nozzle with specified length of filament. If this parameter is not
  94. * given, no prime action will take place. If the parameter specifies an amount, that much
  95. * will be purged before continuing. If no amount is specified the command will start
  96. * purging filament until the user provides an LCD Click and then it will continue with
  97. * printing the Mesh. You can carefully remove the spent filament with a needle nose
  98. * pliers while holding the LCD Click wheel in a depressed state.
  99. *
  100. * R # Random Randomize the order that the circles are drawn on the bed. The search for the closest
  101. * undrawn cicle is still done. But the distance to the location for each circle has a
  102. * random number of the size specified added to it. Specifying R50 will give an interesting
  103. * deviation from the normal behaviour on a 10 x 10 Mesh.
  104. *
  105. * X # X coordinate Specify the starting location of the drawing activity.
  106. *
  107. * Y # Y coordinate Specify the starting location of the drawing activity.
  108. */
  109. // External references
  110. extern float feedrate;
  111. extern Planner planner;
  112. #if ENABLED(ULTRA_LCD)
  113. extern char lcd_status_message[];
  114. #endif
  115. extern float destination[XYZE];
  116. void set_destination_to_current();
  117. void set_current_to_destination();
  118. float code_value_float();
  119. bool code_value_bool();
  120. bool code_has_value();
  121. void lcd_init();
  122. void lcd_setstatuspgm(const char* const message, const uint8_t level);
  123. bool prepare_move_to_destination_cartesian();
  124. void line_to_destination();
  125. void line_to_destination(float);
  126. void sync_plan_position_e();
  127. void chirp_at_user();
  128. // Private functions
  129. void un_retract_filament(float where[XYZE]);
  130. void retract_filament(float where[XYZE]);
  131. void look_for_lines_to_connect();
  132. bool parse_G26_parameters();
  133. void move_to(const float&, const float&, const float&, const float&) ;
  134. void print_line_from_here_to_there(const float&, const float&, const float&, const float&, const float&, const float&);
  135. bool turn_on_heaters();
  136. bool prime_nozzle();
  137. static uint16_t circle_flags[16], horizontal_mesh_line_flags[16], vertical_mesh_line_flags[16], continue_with_closest = 0;
  138. float g26_e_axis_feedrate = 0.020,
  139. random_deviation = 0.0,
  140. layer_height = LAYER_HEIGHT;
  141. static bool g26_retracted = false; // Track the retracted state of the nozzle so mismatched
  142. // retracts/recovers won't result in a bad state.
  143. float valid_trig_angle(float);
  144. mesh_index_pair find_closest_circle_to_print(const float&, const float&);
  145. static float extrusion_multiplier = EXTRUSION_MULTIPLIER,
  146. retraction_multiplier = RETRACTION_MULTIPLIER,
  147. nozzle = NOZZLE,
  148. filament_diameter = FILAMENT,
  149. prime_length = PRIME_LENGTH,
  150. x_pos, y_pos,
  151. bed_temp = BED_TEMP,
  152. hotend_temp = HOTEND_TEMP,
  153. ooze_amount = OOZE_AMOUNT;
  154. static int8_t prime_flag = 0;
  155. static bool keep_heaters_on = false;
  156. /**
  157. * G26: Mesh Validation Pattern generation.
  158. *
  159. * Used to interactively edit UBL's Mesh by placing the
  160. * nozzle in a problem area and doing a G29 P4 R command.
  161. */
  162. void gcode_G26() {
  163. float tmp, start_angle, end_angle;
  164. int i, xi, yi;
  165. mesh_index_pair location;
  166. // Don't allow Mesh Validation without homing first,
  167. // or if the parameter parsing did not go OK, abort
  168. if (axis_unhomed_error(true, true, true) || parse_G26_parameters()) return;
  169. if (current_position[Z_AXIS] < Z_CLEARANCE_BETWEEN_PROBES) {
  170. do_blocking_move_to_z(Z_CLEARANCE_BETWEEN_PROBES);
  171. stepper.synchronize();
  172. set_current_to_destination();
  173. }
  174. if (turn_on_heaters()) goto LEAVE;
  175. current_position[E_AXIS] = 0.0;
  176. sync_plan_position_e();
  177. if (prime_flag && prime_nozzle()) goto LEAVE;
  178. /**
  179. * Bed is preheated
  180. *
  181. * Nozzle is at temperature
  182. *
  183. * Filament is primed!
  184. *
  185. * It's "Show Time" !!!
  186. */
  187. ZERO(circle_flags);
  188. ZERO(horizontal_mesh_line_flags);
  189. ZERO(vertical_mesh_line_flags);
  190. // Move nozzle to the specified height for the first layer
  191. set_destination_to_current();
  192. destination[Z_AXIS] = layer_height;
  193. move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], 0.0);
  194. move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], ooze_amount);
  195. ubl.has_control_of_lcd_panel = true;
  196. //debug_current_and_destination(PSTR("Starting G26 Mesh Validation Pattern."));
  197. /**
  198. * Declare and generate a sin() & cos() table to be used during the circle drawing. This will lighten
  199. * the CPU load and make the arc drawing faster and more smooth
  200. */
  201. float sin_table[360 / 30 + 1], cos_table[360 / 30 + 1];
  202. for (i = 0; i <= 360 / 30; i++) {
  203. cos_table[i] = SIZE_OF_INTERSECTION_CIRCLES * cos(RADIANS(valid_trig_angle(i * 30.0)));
  204. sin_table[i] = SIZE_OF_INTERSECTION_CIRCLES * sin(RADIANS(valid_trig_angle(i * 30.0)));
  205. }
  206. do {
  207. if (ubl_lcd_clicked()) { // Check if the user wants to stop the Mesh Validation
  208. #if ENABLED(ULTRA_LCD)
  209. lcd_setstatuspgm(PSTR("Mesh Validation Stopped."), 99);
  210. lcd_quick_feedback();
  211. #endif
  212. while (!ubl_lcd_clicked()) { // Wait until the user is done pressing the
  213. idle(); // Encoder Wheel if that is why we are leaving
  214. lcd_reset_alert_level();
  215. lcd_setstatuspgm(PSTR(""));
  216. }
  217. while (ubl_lcd_clicked()) { // Wait until the user is done pressing the
  218. idle(); // Encoder Wheel if that is why we are leaving
  219. lcd_setstatuspgm(PSTR("Unpress Wheel"), 99);
  220. }
  221. goto LEAVE;
  222. }
  223. location = continue_with_closest
  224. ? find_closest_circle_to_print(current_position[X_AXIS], current_position[Y_AXIS])
  225. : find_closest_circle_to_print(x_pos, y_pos); // Find the closest Mesh Intersection to where we are now.
  226. if (location.x_index >= 0 && location.y_index >= 0) {
  227. const float circle_x = pgm_read_float(&(ubl.mesh_index_to_xpos[location.x_index])),
  228. circle_y = pgm_read_float(&(ubl.mesh_index_to_ypos[location.y_index]));
  229. // Let's do a couple of quick sanity checks. We can pull this code out later if we never see it catch a problem
  230. #ifdef DELTA
  231. if (HYPOT2(circle_x, circle_y) > sq(DELTA_PRINTABLE_RADIUS)) {
  232. SERIAL_ERROR_START;
  233. SERIAL_ERRORLNPGM("Attempt to print outside of DELTA_PRINTABLE_RADIUS.");
  234. goto LEAVE;
  235. }
  236. #endif
  237. // TODO: Change this to use `position_is_reachable`
  238. if (!WITHIN(circle_x, X_MIN_POS, X_MAX_POS) || !WITHIN(circle_y, Y_MIN_POS, Y_MAX_POS)) {
  239. SERIAL_ERROR_START;
  240. SERIAL_ERRORLNPGM("Attempt to print off the bed.");
  241. goto LEAVE;
  242. }
  243. xi = location.x_index; // Just to shrink the next few lines and make them easier to understand
  244. yi = location.y_index;
  245. if (ubl.g26_debug_flag) {
  246. SERIAL_ECHOPAIR(" Doing circle at: (xi=", xi);
  247. SERIAL_ECHOPAIR(", yi=", yi);
  248. SERIAL_CHAR(')');
  249. SERIAL_EOL;
  250. }
  251. start_angle = 0.0; // assume it is going to be a full circle
  252. end_angle = 360.0;
  253. if (xi == 0) { // Check for bottom edge
  254. start_angle = -90.0;
  255. end_angle = 90.0;
  256. if (yi == 0) // it is an edge, check for the two left corners
  257. start_angle = 0.0;
  258. else if (yi == GRID_MAX_POINTS_Y - 1)
  259. end_angle = 0.0;
  260. }
  261. else if (xi == GRID_MAX_POINTS_X - 1) { // Check for top edge
  262. start_angle = 90.0;
  263. end_angle = 270.0;
  264. if (yi == 0) // it is an edge, check for the two right corners
  265. end_angle = 180.0;
  266. else if (yi == GRID_MAX_POINTS_Y - 1)
  267. start_angle = 180.0;
  268. }
  269. else if (yi == 0) {
  270. start_angle = 0.0; // only do the top side of the cirlce
  271. end_angle = 180.0;
  272. }
  273. else if (yi == GRID_MAX_POINTS_Y - 1) {
  274. start_angle = 180.0; // only do the bottom side of the cirlce
  275. end_angle = 360.0;
  276. }
  277. for (tmp = start_angle; tmp < end_angle - 0.1; tmp += 30.0) {
  278. int tmp_div_30 = tmp / 30.0;
  279. if (tmp_div_30 < 0) tmp_div_30 += 360 / 30;
  280. if (tmp_div_30 > 11) tmp_div_30 -= 360 / 30;
  281. float x = circle_x + cos_table[tmp_div_30], // for speed, these are now a lookup table entry
  282. y = circle_y + sin_table[tmp_div_30],
  283. xe = circle_x + cos_table[tmp_div_30 + 1],
  284. ye = circle_y + sin_table[tmp_div_30 + 1];
  285. #ifdef DELTA
  286. if (HYPOT2(x, y) > sq(DELTA_PRINTABLE_RADIUS)) // Check to make sure this part of
  287. continue; // the 'circle' is on the bed. If
  288. #else // not, we need to skip
  289. x = constrain(x, X_MIN_POS + 1, X_MAX_POS - 1); // This keeps us from bumping the endstops
  290. y = constrain(y, Y_MIN_POS + 1, Y_MAX_POS - 1);
  291. xe = constrain(xe, X_MIN_POS + 1, X_MAX_POS - 1);
  292. ye = constrain(ye, Y_MIN_POS + 1, Y_MAX_POS - 1);
  293. #endif
  294. //if (ubl.g26_debug_flag) {
  295. // char ccc, *cptr, seg_msg[50], seg_num[10];
  296. // strcpy(seg_msg, " segment: ");
  297. // strcpy(seg_num, " \n");
  298. // cptr = (char*) "01234567890ABCDEF????????";
  299. // ccc = cptr[tmp_div_30];
  300. // seg_num[1] = ccc;
  301. // strcat(seg_msg, seg_num);
  302. // debug_current_and_destination(seg_msg);
  303. //}
  304. print_line_from_here_to_there(LOGICAL_X_POSITION(x), LOGICAL_Y_POSITION(y), layer_height, LOGICAL_X_POSITION(xe), LOGICAL_Y_POSITION(ye), layer_height);
  305. }
  306. //debug_current_and_destination(PSTR("Looking for lines to connect."));
  307. look_for_lines_to_connect();
  308. //debug_current_and_destination(PSTR("Done with line connect."));
  309. }
  310. //debug_current_and_destination(PSTR("Done with current circle."));
  311. } while (location.x_index >= 0 && location.y_index >= 0);
  312. LEAVE:
  313. lcd_reset_alert_level();
  314. lcd_setstatuspgm(PSTR("Leaving G26"));
  315. retract_filament(destination);
  316. destination[Z_AXIS] = Z_CLEARANCE_BETWEEN_PROBES;
  317. //debug_current_and_destination(PSTR("ready to do Z-Raise."));
  318. move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], 0); // Raise the nozzle
  319. //debug_current_and_destination(PSTR("done doing Z-Raise."));
  320. destination[X_AXIS] = x_pos; // Move back to the starting position
  321. destination[Y_AXIS] = y_pos;
  322. //destination[Z_AXIS] = Z_CLEARANCE_BETWEEN_PROBES; // Keep the nozzle where it is
  323. move_to(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], 0); // Move back to the starting position
  324. //debug_current_and_destination(PSTR("done doing X/Y move."));
  325. ubl.has_control_of_lcd_panel = false; // Give back control of the LCD Panel!
  326. if (!keep_heaters_on) {
  327. #if HAS_TEMP_BED
  328. thermalManager.setTargetBed(0.0);
  329. #endif
  330. thermalManager.setTargetHotend(0.0, 0);
  331. }
  332. }
  333. float valid_trig_angle(float d) {
  334. while (d > 360.0) d -= 360.0;
  335. while (d < 0.0) d += 360.0;
  336. return d;
  337. }
  338. mesh_index_pair find_closest_circle_to_print(const float &X, const float &Y) {
  339. float closest = 99999.99;
  340. mesh_index_pair return_val;
  341. return_val.x_index = return_val.y_index = -1;
  342. for (uint8_t i = 0; i < GRID_MAX_POINTS_X; i++) {
  343. for (uint8_t j = 0; j < GRID_MAX_POINTS_Y; j++) {
  344. if (!is_bit_set(circle_flags, i, j)) {
  345. const float mx = pgm_read_float(&(ubl.mesh_index_to_xpos[i])), // We found a circle that needs to be printed
  346. my = pgm_read_float(&(ubl.mesh_index_to_ypos[j]));
  347. // Get the distance to this intersection
  348. float f = HYPOT(X - mx, Y - my);
  349. // It is possible that we are being called with the values
  350. // to let us find the closest circle to the start position.
  351. // But if this is not the case, add a small weighting to the
  352. // distance calculation to help it choose a better place to continue.
  353. f += HYPOT(x_pos - mx, y_pos - my) / 15.0;
  354. // Add in the specified amount of Random Noise to our search
  355. if (random_deviation > 1.0)
  356. f += random(0.0, random_deviation);
  357. if (f < closest) {
  358. closest = f; // We found a closer location that is still
  359. return_val.x_index = i; // un-printed --- save the data for it
  360. return_val.y_index = j;
  361. return_val.distance = closest;
  362. }
  363. }
  364. }
  365. }
  366. bit_set(circle_flags, return_val.x_index, return_val.y_index); // Mark this location as done.
  367. return return_val;
  368. }
  369. void look_for_lines_to_connect() {
  370. float sx, sy, ex, ey;
  371. for (uint8_t i = 0; i < GRID_MAX_POINTS_X; i++) {
  372. for (uint8_t j = 0; j < GRID_MAX_POINTS_Y; j++) {
  373. if (i < GRID_MAX_POINTS_X) { // We can't connect to anything to the right than GRID_MAX_POINTS_X.
  374. // This is already a half circle because we are at the edge of the bed.
  375. if (is_bit_set(circle_flags, i, j) && is_bit_set(circle_flags, i + 1, j)) { // check if we can do a line to the left
  376. if (!is_bit_set(horizontal_mesh_line_flags, i, j)) {
  377. //
  378. // We found two circles that need a horizontal line to connect them
  379. // Print it!
  380. //
  381. sx = pgm_read_float(&(ubl.mesh_index_to_xpos[ i ])) + (SIZE_OF_INTERSECTION_CIRCLES - (SIZE_OF_CROSSHAIRS)); // right edge
  382. ex = pgm_read_float(&(ubl.mesh_index_to_xpos[i + 1])) - (SIZE_OF_INTERSECTION_CIRCLES - (SIZE_OF_CROSSHAIRS)); // left edge
  383. sx = constrain(sx, X_MIN_POS + 1, X_MAX_POS - 1);
  384. sy = ey = constrain(pgm_read_float(&(ubl.mesh_index_to_ypos[j])), Y_MIN_POS + 1, Y_MAX_POS - 1);
  385. ex = constrain(ex, X_MIN_POS + 1, X_MAX_POS - 1);
  386. if (ubl.g26_debug_flag) {
  387. SERIAL_ECHOPAIR(" Connecting with horizontal line (sx=", sx);
  388. SERIAL_ECHOPAIR(", sy=", sy);
  389. SERIAL_ECHOPAIR(") -> (ex=", ex);
  390. SERIAL_ECHOPAIR(", ey=", ey);
  391. SERIAL_CHAR(')');
  392. SERIAL_EOL;
  393. //debug_current_and_destination(PSTR("Connecting horizontal line."));
  394. }
  395. print_line_from_here_to_there(LOGICAL_X_POSITION(sx), LOGICAL_Y_POSITION(sy), layer_height, LOGICAL_X_POSITION(ex), LOGICAL_Y_POSITION(ey), layer_height);
  396. bit_set(horizontal_mesh_line_flags, i, j); // Mark it as done so we don't do it again
  397. }
  398. }
  399. if (j < GRID_MAX_POINTS_Y) { // We can't connect to anything further back than GRID_MAX_POINTS_Y.
  400. // This is already a half circle because we are at the edge of the bed.
  401. if (is_bit_set(circle_flags, i, j) && is_bit_set(circle_flags, i, j + 1)) { // check if we can do a line straight down
  402. if (!is_bit_set( vertical_mesh_line_flags, i, j)) {
  403. //
  404. // We found two circles that need a vertical line to connect them
  405. // Print it!
  406. //
  407. sy = pgm_read_float(&(ubl.mesh_index_to_ypos[ j ])) + (SIZE_OF_INTERSECTION_CIRCLES - (SIZE_OF_CROSSHAIRS)); // top edge
  408. ey = pgm_read_float(&(ubl.mesh_index_to_ypos[j + 1])) - (SIZE_OF_INTERSECTION_CIRCLES - (SIZE_OF_CROSSHAIRS)); // bottom edge
  409. sx = ex = constrain(pgm_read_float(&(ubl.mesh_index_to_xpos[i])), X_MIN_POS + 1, X_MAX_POS - 1);
  410. sy = constrain(sy, Y_MIN_POS + 1, Y_MAX_POS - 1);
  411. ey = constrain(ey, Y_MIN_POS + 1, Y_MAX_POS - 1);
  412. if (ubl.g26_debug_flag) {
  413. SERIAL_ECHOPAIR(" Connecting with vertical line (sx=", sx);
  414. SERIAL_ECHOPAIR(", sy=", sy);
  415. SERIAL_ECHOPAIR(") -> (ex=", ex);
  416. SERIAL_ECHOPAIR(", ey=", ey);
  417. SERIAL_CHAR(')');
  418. SERIAL_EOL;
  419. debug_current_and_destination(PSTR("Connecting vertical line."));
  420. }
  421. print_line_from_here_to_there(LOGICAL_X_POSITION(sx), LOGICAL_Y_POSITION(sy), layer_height, LOGICAL_X_POSITION(ex), LOGICAL_Y_POSITION(ey), layer_height);
  422. bit_set(vertical_mesh_line_flags, i, j); // Mark it as done so we don't do it again
  423. }
  424. }
  425. }
  426. }
  427. }
  428. }
  429. }
  430. void move_to(const float &x, const float &y, const float &z, const float &e_delta) {
  431. float feed_value;
  432. static float last_z = -999.99;
  433. bool has_xy_component = (x != current_position[X_AXIS] || y != current_position[Y_AXIS]); // Check if X or Y is involved in the movement.
  434. //if (ubl.g26_debug_flag) SERIAL_ECHOLNPAIR("in move_to() has_xy_component:", (int)has_xy_component);
  435. if (z != last_z) {
  436. //if (ubl.g26_debug_flag) SERIAL_ECHOLNPAIR("in move_to() changing Z to ", (int)z);
  437. last_z = z;
  438. feed_value = planner.max_feedrate_mm_s[Z_AXIS]/(3.0); // Base the feed rate off of the configured Z_AXIS feed rate
  439. destination[X_AXIS] = current_position[X_AXIS];
  440. destination[Y_AXIS] = current_position[Y_AXIS];
  441. destination[Z_AXIS] = z; // We know the last_z==z or we wouldn't be in this block of code.
  442. destination[E_AXIS] = current_position[E_AXIS];
  443. ubl_line_to_destination(feed_value, 0);
  444. stepper.synchronize();
  445. set_destination_to_current();
  446. //if (ubl.g26_debug_flag) debug_current_and_destination(PSTR(" in move_to() done with Z move"));
  447. }
  448. // Check if X or Y is involved in the movement.
  449. // Yes: a 'normal' movement. No: a retract() or un_retract()
  450. feed_value = has_xy_component ? PLANNER_XY_FEEDRATE() / 10.0 : planner.max_feedrate_mm_s[E_AXIS] / 1.5;
  451. if (ubl.g26_debug_flag) SERIAL_ECHOLNPAIR("in move_to() feed_value for XY:", feed_value);
  452. destination[X_AXIS] = x;
  453. destination[Y_AXIS] = y;
  454. destination[E_AXIS] += e_delta;
  455. //if (ubl.g26_debug_flag) debug_current_and_destination(PSTR(" in move_to() doing last move"));
  456. ubl_line_to_destination(feed_value, 0);
  457. //if (ubl.g26_debug_flag) debug_current_and_destination(PSTR(" in move_to() after last move"));
  458. stepper.synchronize();
  459. set_destination_to_current();
  460. }
  461. void retract_filament(float where[XYZE]) {
  462. if (!g26_retracted) { // Only retract if we are not already retracted!
  463. g26_retracted = true;
  464. //if (ubl.g26_debug_flag) SERIAL_ECHOLNPGM(" Decided to do retract.");
  465. move_to(where[X_AXIS], where[Y_AXIS], where[Z_AXIS], -1.0 * retraction_multiplier);
  466. //if (ubl.g26_debug_flag) SERIAL_ECHOLNPGM(" Retraction done.");
  467. }
  468. }
  469. void un_retract_filament(float where[XYZE]) {
  470. if (g26_retracted) { // Only un-retract if we are retracted.
  471. move_to(where[X_AXIS], where[Y_AXIS], where[Z_AXIS], 1.2 * retraction_multiplier);
  472. g26_retracted = false;
  473. //if (ubl.g26_debug_flag) SERIAL_ECHOLNPGM(" unretract done.");
  474. }
  475. }
  476. /**
  477. * print_line_from_here_to_there() takes two cartesian coordinates and draws a line from one
  478. * to the other. But there are really three sets of coordinates involved. The first coordinate
  479. * is the present location of the nozzle. We don't necessarily want to print from this location.
  480. * We first need to move the nozzle to the start of line segment where we want to print. Once
  481. * there, we can use the two coordinates supplied to draw the line.
  482. *
  483. * Note: Although we assume the first set of coordinates is the start of the line and the second
  484. * set of coordinates is the end of the line, it does not always work out that way. This function
  485. * optimizes the movement to minimize the travel distance before it can start printing. This saves
  486. * a lot of time and eleminates a lot of non-sensical movement of the nozzle. However, it does
  487. * cause a lot of very little short retracement of th nozzle when it draws the very first line
  488. * segment of a 'circle'. The time this requires is very short and is easily saved by the other
  489. * cases where the optimization comes into play.
  490. */
  491. void print_line_from_here_to_there(const float &sx, const float &sy, const float &sz, const float &ex, const float &ey, const float &ez) {
  492. const float dx_s = current_position[X_AXIS] - sx, // find our distance from the start of the actual line segment
  493. dy_s = current_position[Y_AXIS] - sy,
  494. dist_start = HYPOT2(dx_s, dy_s), // We don't need to do a sqrt(), we can compare the distance^2
  495. // to save computation time
  496. dx_e = current_position[X_AXIS] - ex, // find our distance from the end of the actual line segment
  497. dy_e = current_position[Y_AXIS] - ey,
  498. dist_end = HYPOT2(dx_e, dy_e),
  499. line_length = HYPOT(ex - sx, ey - sy);
  500. // If the end point of the line is closer to the nozzle, flip the direction,
  501. // moving from the end to the start. On very small lines the optimization isn't worth it.
  502. if (dist_end < dist_start && (SIZE_OF_INTERSECTION_CIRCLES) < abs(line_length)) {
  503. //if (ubl.g26_debug_flag) SERIAL_ECHOLNPGM(" Reversing start and end of print_line_from_here_to_there()");
  504. return print_line_from_here_to_there(ex, ey, ez, sx, sy, sz);
  505. }
  506. // Decide whether to retract.
  507. if (dist_start > 2.0) {
  508. retract_filament(destination);
  509. //if (ubl.g26_debug_flag) SERIAL_ECHOLNPGM(" filament retracted.");
  510. }
  511. move_to(sx, sy, sz, 0.0); // Get to the starting point with no extrusion
  512. const float e_pos_delta = line_length * g26_e_axis_feedrate * extrusion_multiplier;
  513. un_retract_filament(destination);
  514. //if (ubl.g26_debug_flag) {
  515. // SERIAL_ECHOLNPGM(" doing printing move.");
  516. // debug_current_and_destination(PSTR("doing final move_to() inside print_line_from_here_to_there()"));
  517. //}
  518. move_to(ex, ey, ez, e_pos_delta); // Get to the ending point with an appropriate amount of extrusion
  519. }
  520. /**
  521. * This function used to be inline code in G26. But there are so many
  522. * parameters it made sense to turn them into static globals and get
  523. * this code out of sight of the main routine.
  524. */
  525. bool parse_G26_parameters() {
  526. extrusion_multiplier = EXTRUSION_MULTIPLIER;
  527. retraction_multiplier = RETRACTION_MULTIPLIER;
  528. nozzle = NOZZLE;
  529. filament_diameter = FILAMENT;
  530. layer_height = LAYER_HEIGHT;
  531. prime_length = PRIME_LENGTH;
  532. bed_temp = BED_TEMP;
  533. hotend_temp = HOTEND_TEMP;
  534. ooze_amount = OOZE_AMOUNT;
  535. prime_flag = 0;
  536. keep_heaters_on = false;
  537. if (code_seen('B')) {
  538. bed_temp = code_value_float();
  539. if (!WITHIN(bed_temp, 15.0, 140.0)) {
  540. SERIAL_PROTOCOLLNPGM("?Specified bed temperature not plausible.");
  541. return UBL_ERR;
  542. }
  543. }
  544. if (code_seen('C')) continue_with_closest++;
  545. if (code_seen('L')) {
  546. layer_height = code_value_float();
  547. if (!WITHIN(layer_height, 0.0, 2.0)) {
  548. SERIAL_PROTOCOLLNPGM("?Specified layer height not plausible.");
  549. return UBL_ERR;
  550. }
  551. }
  552. if (code_seen('Q')) {
  553. if (code_has_value()) {
  554. retraction_multiplier = code_value_float();
  555. if (!WITHIN(retraction_multiplier, 0.05, 15.0)) {
  556. SERIAL_PROTOCOLLNPGM("?Specified Retraction Multiplier not plausible.");
  557. return UBL_ERR;
  558. }
  559. }
  560. else {
  561. SERIAL_PROTOCOLLNPGM("?Retraction Multiplier must be specified.");
  562. return UBL_ERR;
  563. }
  564. }
  565. if (code_seen('N')) {
  566. nozzle = code_value_float();
  567. if (!WITHIN(nozzle, 0.1, 1.0)) {
  568. SERIAL_PROTOCOLLNPGM("?Specified nozzle size not plausible.");
  569. return UBL_ERR;
  570. }
  571. }
  572. if (code_seen('K')) keep_heaters_on++;
  573. if (code_seen('O') && code_has_value())
  574. ooze_amount = code_value_float();
  575. if (code_seen('P')) {
  576. if (!code_has_value())
  577. prime_flag = -1;
  578. else {
  579. prime_flag++;
  580. prime_length = code_value_float();
  581. if (!WITHIN(prime_length, 0.0, 25.0)) {
  582. SERIAL_PROTOCOLLNPGM("?Specified prime length not plausible.");
  583. return UBL_ERR;
  584. }
  585. }
  586. }
  587. if (code_seen('F')) {
  588. filament_diameter = code_value_float();
  589. if (!WITHIN(filament_diameter, 1.0, 4.0)) {
  590. SERIAL_PROTOCOLLNPGM("?Specified filament size not plausible.");
  591. return UBL_ERR;
  592. }
  593. }
  594. extrusion_multiplier *= sq(1.75) / sq(filament_diameter); // If we aren't using 1.75mm filament, we need to
  595. // scale up or down the length needed to get the
  596. // same volume of filament
  597. extrusion_multiplier *= filament_diameter * sq(nozzle) / sq(0.3); // Scale up by nozzle size
  598. if (code_seen('H')) {
  599. hotend_temp = code_value_float();
  600. if (!WITHIN(hotend_temp, 165.0, 280.0)) {
  601. SERIAL_PROTOCOLLNPGM("?Specified nozzle temperature not plausible.");
  602. return UBL_ERR;
  603. }
  604. }
  605. if (code_seen('R')) {
  606. randomSeed(millis());
  607. random_deviation = code_has_value() ? code_value_float() : 50.0;
  608. }
  609. x_pos = current_position[X_AXIS];
  610. y_pos = current_position[Y_AXIS];
  611. if (code_seen('X')) {
  612. x_pos = code_value_float();
  613. if (!WITHIN(x_pos, X_MIN_POS, X_MAX_POS)) {
  614. SERIAL_PROTOCOLLNPGM("?Specified X coordinate not plausible.");
  615. return UBL_ERR;
  616. }
  617. }
  618. else
  619. if (code_seen('Y')) {
  620. y_pos = code_value_float();
  621. if (!WITHIN(y_pos, Y_MIN_POS, Y_MAX_POS)) {
  622. SERIAL_PROTOCOLLNPGM("?Specified Y coordinate not plausible.");
  623. return UBL_ERR;
  624. }
  625. }
  626. /**
  627. * We save the question of what to do with the Unified Bed Leveling System's Activation until the very
  628. * end. The reason is, if one of the parameters specified up above is incorrect, we don't want to
  629. * alter the system's status. We wait until we know everything is correct before altering the state
  630. * of the system.
  631. */
  632. ubl.state.active = !code_seen('D');
  633. return UBL_OK;
  634. }
  635. bool exit_from_g26() {
  636. //strcpy(lcd_status_message, "Leaving G26"); // We can't do lcd_setstatus() without having it continue;
  637. lcd_reset_alert_level();
  638. lcd_setstatuspgm(PSTR("Leaving G26"));
  639. while (ubl_lcd_clicked()) idle();
  640. return UBL_ERR;
  641. }
  642. /**
  643. * Turn on the bed and nozzle heat and
  644. * wait for them to get up to temperature.
  645. */
  646. bool turn_on_heaters() {
  647. #if HAS_TEMP_BED
  648. #if ENABLED(ULTRA_LCD)
  649. if (bed_temp > 25) {
  650. lcd_setstatuspgm(PSTR("G26 Heating Bed."), 99);
  651. lcd_quick_feedback();
  652. #endif
  653. ubl.has_control_of_lcd_panel = true;
  654. thermalManager.setTargetBed(bed_temp);
  655. while (abs(thermalManager.degBed() - bed_temp) > 3) {
  656. if (ubl_lcd_clicked()) return exit_from_g26();
  657. idle();
  658. }
  659. #if ENABLED(ULTRA_LCD)
  660. }
  661. lcd_setstatuspgm(PSTR("G26 Heating Nozzle."), 99);
  662. lcd_quick_feedback();
  663. #endif
  664. #endif
  665. // Start heating the nozzle and wait for it to reach temperature.
  666. thermalManager.setTargetHotend(hotend_temp, 0);
  667. while (abs(thermalManager.degHotend(0) - hotend_temp) > 3) {
  668. if (ubl_lcd_clicked()) return exit_from_g26();
  669. idle();
  670. }
  671. #if ENABLED(ULTRA_LCD)
  672. lcd_reset_alert_level();
  673. lcd_setstatuspgm(PSTR(""));
  674. lcd_quick_feedback();
  675. #endif
  676. return UBL_OK;
  677. }
  678. /**
  679. * Prime the nozzle if needed. Return true on error.
  680. */
  681. bool prime_nozzle() {
  682. float Total_Prime = 0.0;
  683. if (prime_flag == -1) { // The user wants to control how much filament gets purged
  684. ubl.has_control_of_lcd_panel = true;
  685. lcd_setstatuspgm(PSTR("User-Controlled Prime"), 99);
  686. chirp_at_user();
  687. set_destination_to_current();
  688. un_retract_filament(destination); // Make sure G26 doesn't think the filament is retracted().
  689. while (!ubl_lcd_clicked()) {
  690. chirp_at_user();
  691. destination[E_AXIS] += 0.25;
  692. #ifdef PREVENT_LENGTHY_EXTRUDE
  693. Total_Prime += 0.25;
  694. if (Total_Prime >= EXTRUDE_MAXLENGTH) return UBL_ERR;
  695. #endif
  696. ubl_line_to_destination(planner.max_feedrate_mm_s[E_AXIS] / 15.0, 0);
  697. stepper.synchronize(); // Without this synchronize, the purge is more consistent,
  698. // but because the planner has a buffer, we won't be able
  699. // to stop as quickly. So we put up with the less smooth
  700. // action to give the user a more responsive 'Stop'.
  701. set_destination_to_current();
  702. idle();
  703. }
  704. while (ubl_lcd_clicked()) idle(); // Debounce Encoder Wheel
  705. #if ENABLED(ULTRA_LCD)
  706. strcpy_P(lcd_status_message, PSTR("Done Priming")); // We can't do lcd_setstatuspgm() without having it continue;
  707. // So... We cheat to get a message up.
  708. lcd_setstatuspgm(PSTR("Done Priming"), 99);
  709. lcd_quick_feedback();
  710. #endif
  711. ubl.has_control_of_lcd_panel = false;
  712. }
  713. else {
  714. #if ENABLED(ULTRA_LCD)
  715. lcd_setstatuspgm(PSTR("Fixed Length Prime."), 99);
  716. lcd_quick_feedback();
  717. #endif
  718. set_destination_to_current();
  719. destination[E_AXIS] += prime_length;
  720. ubl_line_to_destination(planner.max_feedrate_mm_s[E_AXIS] / 15.0, 0);
  721. stepper.synchronize();
  722. set_destination_to_current();
  723. retract_filament(destination);
  724. }
  725. return UBL_OK;
  726. }
  727. #endif // AUTO_BED_LEVELING_UBL && UBL_G26_MESH_EDITING