My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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