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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 "../../../inc/MarlinConfig.h"
  23. #if SAVED_POSITIONS
  24. #include "../../../module/planner.h"
  25. #include "../../gcode.h"
  26. #include "../../../module/motion.h"
  27. /**
  28. * G61: Return to saved position
  29. *
  30. * F<rate> - Feedrate (optional) for the move back.
  31. * S<slot> - Slot # (0-based) to restore from (default 0).
  32. * X Y Z - Axes to restore. At least one is required.
  33. */
  34. void GcodeSuite::G61(void) {
  35. const uint8_t slot = parser.byteval('S');
  36. #if SAVED_POSITIONS < 256
  37. if (slot >= SAVED_POSITIONS) {
  38. SERIAL_ERROR_MSG(STR_INVALID_POS_SLOT STRINGIFY(SAVED_POSITIONS));
  39. return;
  40. }
  41. #endif
  42. // No saved position? No axes being restored?
  43. if (!TEST(saved_slots[slot >> 3], slot & 0x07) || !parser.seen("XYZ")) return;
  44. SERIAL_ECHOPAIR(STR_RESTORING_POS " S", slot);
  45. LOOP_XYZ(i) {
  46. destination[i] = parser.seen(XYZ_CHAR(i))
  47. ? stored_position[slot][i] + parser.value_axis_units((AxisEnum)i)
  48. : current_position[i];
  49. SERIAL_CHAR(' ', XYZ_CHAR(i));
  50. SERIAL_ECHO_F(destination[i]);
  51. }
  52. SERIAL_EOL();
  53. // Apply any given feedrate over 0.0
  54. feedRate_t saved_feedrate = feedrate_mm_s;
  55. const float fr = parser.linearval('F');
  56. if (fr > 0.0) feedrate_mm_s = MMM_TO_MMS(fr);
  57. // Move to the saved position
  58. prepare_line_to_destination();
  59. feedrate_mm_s = saved_feedrate;
  60. }
  61. #endif // SAVED_POSITIONS