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.

G28.cpp 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #include "../../inc/MarlinConfig.h"
  23. #include "../gcode.h"
  24. #include "../../module/stepper.h"
  25. #include "../../module/endstops.h"
  26. #if HOTENDS > 1
  27. #include "../../module/tool_change.h"
  28. #endif
  29. #if HAS_LEVELING
  30. #include "../../feature/bedlevel/bedlevel.h"
  31. #endif
  32. #if ENABLED(SENSORLESS_HOMING)
  33. #include "../../feature/tmc_util.h"
  34. #endif
  35. #include "../../module/probe.h"
  36. #if ENABLED(BLTOUCH)
  37. #include "../../feature/bltouch.h"
  38. #endif
  39. #include "../../lcd/ultralcd.h"
  40. #if HAS_L64XX // set L6470 absolute position registers to counts
  41. #include "../../libs/L64XX/L64XX_Marlin.h"
  42. #endif
  43. #define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
  44. #include "../../core/debug_out.h"
  45. #if ENABLED(QUICK_HOME)
  46. static void quick_home_xy() {
  47. // Pretend the current position is 0,0
  48. current_position.set(0.0, 0.0);
  49. sync_plan_position();
  50. const int x_axis_home_dir = x_home_dir(active_extruder);
  51. const float mlx = max_length(X_AXIS),
  52. mly = max_length(Y_AXIS),
  53. mlratio = mlx > mly ? mly / mlx : mlx / mly,
  54. fr_mm_s = _MIN(homing_feedrate(X_AXIS), homing_feedrate(Y_AXIS)) * SQRT(sq(mlratio) + 1.0);
  55. #if ENABLED(SENSORLESS_HOMING)
  56. sensorless_t stealth_states {
  57. tmc_enable_stallguard(stepperX)
  58. , tmc_enable_stallguard(stepperY)
  59. , false
  60. , false
  61. #if AXIS_HAS_STALLGUARD(X2)
  62. || tmc_enable_stallguard(stepperX2)
  63. #endif
  64. , false
  65. #if AXIS_HAS_STALLGUARD(Y2)
  66. || tmc_enable_stallguard(stepperY2)
  67. #endif
  68. };
  69. #endif
  70. do_blocking_move_to_xy(1.5 * mlx * x_axis_home_dir, 1.5 * mly * home_dir(Y_AXIS), fr_mm_s);
  71. endstops.validate_homing_move();
  72. current_position.set(0.0, 0.0);
  73. #if ENABLED(SENSORLESS_HOMING)
  74. tmc_disable_stallguard(stepperX, stealth_states.x);
  75. tmc_disable_stallguard(stepperY, stealth_states.y);
  76. #if AXIS_HAS_STALLGUARD(X2)
  77. tmc_disable_stallguard(stepperX2, stealth_states.x2);
  78. #endif
  79. #if AXIS_HAS_STALLGUARD(Y2)
  80. tmc_disable_stallguard(stepperY2, stealth_states.y2);
  81. #endif
  82. #endif
  83. }
  84. #endif // QUICK_HOME
  85. #if ENABLED(Z_SAFE_HOMING)
  86. inline void home_z_safely() {
  87. // Disallow Z homing if X or Y are unknown
  88. if (!TEST(axis_known_position, X_AXIS) || !TEST(axis_known_position, Y_AXIS)) {
  89. LCD_MESSAGEPGM(MSG_ERR_Z_HOMING);
  90. SERIAL_ECHO_MSG(STR_ERR_Z_HOMING_SER);
  91. return;
  92. }
  93. if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("home_z_safely >>>");
  94. sync_plan_position();
  95. /**
  96. * Move the Z probe (or just the nozzle) to the safe homing point
  97. * (Z is already at the right height)
  98. */
  99. destination.set(safe_homing_xy, current_position.z);
  100. #if HOMING_Z_WITH_PROBE
  101. destination -= probe.offset_xy;
  102. #endif
  103. if (position_is_reachable(destination)) {
  104. if (DEBUGGING(LEVELING)) DEBUG_POS("home_z_safely", destination);
  105. // This causes the carriage on Dual X to unpark
  106. #if ENABLED(DUAL_X_CARRIAGE)
  107. active_extruder_parked = false;
  108. #endif
  109. #if ENABLED(SENSORLESS_HOMING)
  110. safe_delay(500); // Short delay needed to settle
  111. #endif
  112. do_blocking_move_to_xy(destination);
  113. homeaxis(Z_AXIS);
  114. }
  115. else {
  116. LCD_MESSAGEPGM(MSG_ZPROBE_OUT);
  117. SERIAL_ECHO_MSG(STR_ZPROBE_OUT_SER);
  118. }
  119. if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< home_z_safely");
  120. }
  121. #endif // Z_SAFE_HOMING
  122. #if ENABLED(IMPROVE_HOMING_RELIABILITY)
  123. slow_homing_t begin_slow_homing() {
  124. slow_homing_t slow_homing{0};
  125. slow_homing.acceleration.set(planner.settings.max_acceleration_mm_per_s2[X_AXIS],
  126. planner.settings.max_acceleration_mm_per_s2[Y_AXIS]);
  127. planner.settings.max_acceleration_mm_per_s2[X_AXIS] = 100;
  128. planner.settings.max_acceleration_mm_per_s2[Y_AXIS] = 100;
  129. #if HAS_CLASSIC_JERK
  130. slow_homing.jerk_xy = planner.max_jerk;
  131. planner.max_jerk.set(0, 0);
  132. #endif
  133. planner.reset_acceleration_rates();
  134. return slow_homing;
  135. }
  136. void end_slow_homing(const slow_homing_t &slow_homing) {
  137. planner.settings.max_acceleration_mm_per_s2[X_AXIS] = slow_homing.acceleration.x;
  138. planner.settings.max_acceleration_mm_per_s2[Y_AXIS] = slow_homing.acceleration.y;
  139. #if HAS_CLASSIC_JERK
  140. planner.max_jerk = slow_homing.jerk_xy;
  141. #endif
  142. planner.reset_acceleration_rates();
  143. }
  144. #endif // IMPROVE_HOMING_RELIABILITY
  145. /**
  146. * G28: Home all axes according to settings
  147. *
  148. * Parameters
  149. *
  150. * None Home to all axes with no parameters.
  151. * With QUICK_HOME enabled XY will home together, then Z.
  152. *
  153. * O Home only if position is unknown
  154. *
  155. * Rn Raise by n mm/inches before homing
  156. *
  157. * Cartesian/SCARA parameters
  158. *
  159. * X Home to the X endstop
  160. * Y Home to the Y endstop
  161. * Z Home to the Z endstop
  162. *
  163. */
  164. void GcodeSuite::G28() {
  165. if (DEBUGGING(LEVELING)) {
  166. DEBUG_ECHOLNPGM(">>> G28");
  167. log_machine_info();
  168. }
  169. #if ENABLED(DUAL_X_CARRIAGE)
  170. bool IDEX_saved_duplication_state = extruder_duplication_enabled;
  171. DualXMode IDEX_saved_mode = dual_x_carriage_mode;
  172. #endif
  173. #if ENABLED(MARLIN_DEV_MODE)
  174. if (parser.seen('S')) {
  175. LOOP_XYZ(a) set_axis_is_at_home((AxisEnum)a);
  176. sync_plan_position();
  177. SERIAL_ECHOLNPGM("Simulated Homing");
  178. report_current_position();
  179. if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< G28");
  180. return;
  181. }
  182. #endif
  183. // Home (O)nly if position is unknown
  184. if (!homing_needed() && parser.boolval('O')) {
  185. if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("> homing not needed, skip\n<<< G28");
  186. return;
  187. }
  188. // Wait for planner moves to finish!
  189. planner.synchronize();
  190. // Disable the leveling matrix before homing
  191. #if HAS_LEVELING
  192. // Cancel the active G29 session
  193. #if ENABLED(PROBE_MANUALLY)
  194. g29_in_progress = false;
  195. #endif
  196. #if ENABLED(RESTORE_LEVELING_AFTER_G28)
  197. const bool leveling_was_active = planner.leveling_active;
  198. #endif
  199. set_bed_leveling_enabled(false);
  200. #endif
  201. #if ENABLED(CNC_WORKSPACE_PLANES)
  202. workspace_plane = PLANE_XY;
  203. #endif
  204. #define HAS_CURRENT_HOME(N) (defined(N##_CURRENT_HOME) && N##_CURRENT_HOME != N##_CURRENT)
  205. #define HAS_HOMING_CURRENT (HAS_CURRENT_HOME(X) || HAS_CURRENT_HOME(X2) || HAS_CURRENT_HOME(Y) || HAS_CURRENT_HOME(Y2))
  206. #if HAS_HOMING_CURRENT
  207. auto debug_current = [](const char * const s, const int16_t a, const int16_t b){
  208. DEBUG_ECHO(s); DEBUG_ECHOLNPAIR(" current: ", a, " -> ", b);
  209. };
  210. #if HAS_CURRENT_HOME(X)
  211. const int16_t tmc_save_current_X = stepperX.getMilliamps();
  212. stepperX.rms_current(X_CURRENT_HOME);
  213. if (DEBUGGING(LEVELING)) debug_current("X", tmc_save_current_X, X_CURRENT_HOME);
  214. #endif
  215. #if HAS_CURRENT_HOME(X2)
  216. const int16_t tmc_save_current_X2 = stepperX2.getMilliamps();
  217. stepperX2.rms_current(X2_CURRENT_HOME);
  218. if (DEBUGGING(LEVELING)) debug_current("X2", tmc_save_current_X2, X2_CURRENT_HOME);
  219. #endif
  220. #if HAS_CURRENT_HOME(Y)
  221. const int16_t tmc_save_current_Y = stepperY.getMilliamps();
  222. stepperY.rms_current(Y_CURRENT_HOME);
  223. if (DEBUGGING(LEVELING)) debug_current("Y", tmc_save_current_Y, Y_CURRENT_HOME);
  224. #endif
  225. #if HAS_CURRENT_HOME(Y2)
  226. const int16_t tmc_save_current_Y2 = stepperY2.getMilliamps();
  227. stepperY2.rms_current(Y2_CURRENT_HOME);
  228. if (DEBUGGING(LEVELING)) debug_current("Y2", tmc_save_current_Y2, Y2_CURRENT_HOME);
  229. #endif
  230. #endif
  231. #if ENABLED(IMPROVE_HOMING_RELIABILITY)
  232. slow_homing_t slow_homing = begin_slow_homing();
  233. #endif
  234. // Always home with tool 0 active
  235. #if HOTENDS > 1
  236. #if DISABLED(DELTA) || ENABLED(DELTA_HOME_TO_SAFE_ZONE)
  237. const uint8_t old_tool_index = active_extruder;
  238. #endif
  239. tool_change(0, true);
  240. #endif
  241. #if HAS_DUPLICATION_MODE
  242. extruder_duplication_enabled = false;
  243. #endif
  244. remember_feedrate_scaling_off();
  245. endstops.enable(true); // Enable endstops for next homing move
  246. #if ENABLED(DELTA)
  247. constexpr bool doZ = true; // for NANODLP_Z_SYNC if your DLP is on a DELTA
  248. home_delta();
  249. #if ENABLED(IMPROVE_HOMING_RELIABILITY)
  250. end_slow_homing(slow_homing);
  251. #endif
  252. #else // NOT DELTA
  253. const bool homeX = parser.seen('X'), homeY = parser.seen('Y'), homeZ = parser.seen('Z'),
  254. home_all = homeX == homeY && homeX == homeZ, // All or None
  255. doX = home_all || homeX, doY = home_all || homeY, doZ = home_all || homeZ;
  256. destination = current_position;
  257. #if Z_HOME_DIR > 0 // If homing away from BED do Z first
  258. if (doZ) homeaxis(Z_AXIS);
  259. #endif
  260. const float z_homing_height =
  261. (DISABLED(UNKNOWN_Z_NO_RAISE) || TEST(axis_known_position, Z_AXIS))
  262. ? (parser.seenval('R') ? parser.value_linear_units() : Z_HOMING_HEIGHT)
  263. : 0;
  264. if (z_homing_height && (doX || doY)) {
  265. // Raise Z before homing any other axes and z is not already high enough (never lower z)
  266. destination.z = z_homing_height + (TEST(axis_known_position, Z_AXIS) ? 0.0f : current_position.z);
  267. if (destination.z > current_position.z) {
  268. if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPAIR("Raise Z (before homing) to ", destination.z);
  269. do_blocking_move_to_z(destination.z);
  270. }
  271. }
  272. #if ENABLED(QUICK_HOME)
  273. if (doX && doY) quick_home_xy();
  274. #endif
  275. // Home Y (before X)
  276. #if ENABLED(HOME_Y_BEFORE_X)
  277. if (doY || (doX && ENABLED(CODEPENDENT_XY_HOMING)))
  278. homeaxis(Y_AXIS);
  279. #endif
  280. // Home X
  281. if (doX || (doY && ENABLED(CODEPENDENT_XY_HOMING) && DISABLED(HOME_Y_BEFORE_X))) {
  282. #if ENABLED(DUAL_X_CARRIAGE)
  283. // Always home the 2nd (right) extruder first
  284. active_extruder = 1;
  285. homeaxis(X_AXIS);
  286. // Remember this extruder's position for later tool change
  287. inactive_extruder_x_pos = current_position.x;
  288. // Home the 1st (left) extruder
  289. active_extruder = 0;
  290. homeaxis(X_AXIS);
  291. // Consider the active extruder to be parked
  292. raised_parked_position = current_position;
  293. delayed_move_time = 0;
  294. active_extruder_parked = true;
  295. #else
  296. homeaxis(X_AXIS);
  297. #endif
  298. }
  299. // Home Y (after X)
  300. if (DISABLED(HOME_Y_BEFORE_X) && doY)
  301. homeaxis(Y_AXIS);
  302. #if ENABLED(IMPROVE_HOMING_RELIABILITY)
  303. end_slow_homing(slow_homing);
  304. #endif
  305. // Home Z last if homing towards the bed
  306. #if Z_HOME_DIR < 0
  307. if (doZ) {
  308. #if ENABLED(BLTOUCH)
  309. bltouch.init();
  310. #endif
  311. #if ENABLED(Z_SAFE_HOMING)
  312. home_z_safely();
  313. #else
  314. homeaxis(Z_AXIS);
  315. #endif
  316. #if HOMING_Z_WITH_PROBE && defined(Z_AFTER_PROBING)
  317. #if Z_AFTER_HOMING > Z_AFTER_PROBING
  318. do_blocking_move_to_z(Z_AFTER_HOMING);
  319. #else
  320. probe.move_z_after_probing();
  321. #endif
  322. #elif defined(Z_AFTER_HOMING)
  323. do_blocking_move_to_z(Z_AFTER_HOMING);
  324. #endif
  325. } // doZ
  326. #endif // Z_HOME_DIR < 0
  327. sync_plan_position();
  328. #endif // !DELTA (G28)
  329. /**
  330. * Preserve DXC mode across a G28 for IDEX printers in DXC_DUPLICATION_MODE.
  331. * This is important because it lets a user use the LCD Panel to set an IDEX Duplication mode, and
  332. * then print a standard GCode file that contains a single print that does a G28 and has no other
  333. * IDEX specific commands in it.
  334. */
  335. #if ENABLED(DUAL_X_CARRIAGE)
  336. if (dxc_is_duplicating()) {
  337. #if ENABLED(IMPROVE_HOMING_RELIABILITY)
  338. slow_homing = begin_slow_homing();
  339. #endif
  340. // Always home the 2nd (right) extruder first
  341. active_extruder = 1;
  342. homeaxis(X_AXIS);
  343. // Remember this extruder's position for later tool change
  344. inactive_extruder_x_pos = current_position.x;
  345. // Home the 1st (left) extruder
  346. active_extruder = 0;
  347. homeaxis(X_AXIS);
  348. // Consider the active extruder to be parked
  349. raised_parked_position = current_position;
  350. delayed_move_time = 0;
  351. active_extruder_parked = true;
  352. extruder_duplication_enabled = IDEX_saved_duplication_state;
  353. dual_x_carriage_mode = IDEX_saved_mode;
  354. stepper.set_directions();
  355. #if ENABLED(IMPROVE_HOMING_RELIABILITY)
  356. end_slow_homing(slow_homing);
  357. #endif
  358. }
  359. #endif // DUAL_X_CARRIAGE
  360. endstops.not_homing();
  361. // Clear endstop state for polled stallGuard endstops
  362. #if ENABLED(SPI_ENDSTOPS)
  363. endstops.clear_endstop_state();
  364. #endif
  365. #if BOTH(DELTA, DELTA_HOME_TO_SAFE_ZONE)
  366. // move to a height where we can use the full xy-area
  367. do_blocking_move_to_z(delta_clip_start_height);
  368. #endif
  369. #if ENABLED(RESTORE_LEVELING_AFTER_G28)
  370. set_bed_leveling_enabled(leveling_was_active);
  371. #endif
  372. restore_feedrate_and_scaling();
  373. // Restore the active tool after homing
  374. #if HOTENDS > 1 && (DISABLED(DELTA) || ENABLED(DELTA_HOME_TO_SAFE_ZONE))
  375. tool_change(old_tool_index, NONE(PARKING_EXTRUDER, DUAL_X_CARRIAGE)); // Do move if one of these
  376. #endif
  377. #if HAS_HOMING_CURRENT
  378. if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("Restore driver current...");
  379. #if HAS_CURRENT_HOME(X)
  380. stepperX.rms_current(tmc_save_current_X);
  381. #endif
  382. #if HAS_CURRENT_HOME(X2)
  383. stepperX2.rms_current(tmc_save_current_X2);
  384. #endif
  385. #if HAS_CURRENT_HOME(Y)
  386. stepperY.rms_current(tmc_save_current_Y);
  387. #endif
  388. #if HAS_CURRENT_HOME(Y2)
  389. stepperY2.rms_current(tmc_save_current_Y2);
  390. #endif
  391. #endif
  392. ui.refresh();
  393. report_current_position();
  394. if (ENABLED(NANODLP_Z_SYNC) && (doZ || ENABLED(NANODLP_ALL_AXIS)))
  395. SERIAL_ECHOLNPGM(STR_Z_MOVE_COMP);
  396. if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("<<< G28");
  397. #if HAS_L64XX
  398. // Set L6470 absolute position registers to counts
  399. // constexpr *might* move this to PROGMEM.
  400. // If not, this will need a PROGMEM directive and an accessor.
  401. static constexpr AxisEnum L64XX_axis_xref[MAX_L64XX] = {
  402. X_AXIS, Y_AXIS, Z_AXIS,
  403. X_AXIS, Y_AXIS, Z_AXIS, Z_AXIS,
  404. E_AXIS, E_AXIS, E_AXIS, E_AXIS, E_AXIS, E_AXIS
  405. };
  406. for (uint8_t j = 1; j <= L64XX::chain[0]; j++) {
  407. const uint8_t cv = L64XX::chain[j];
  408. L64xxManager.set_param((L64XX_axis_t)cv, L6470_ABS_POS, stepper.position(L64XX_axis_xref[cv]));
  409. }
  410. #endif
  411. }