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.

G92.cpp 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 "../gcode.h"
  23. #include "../../module/motion.h"
  24. #include "../../module/stepper.h"
  25. #if ENABLED(I2C_POSITION_ENCODERS)
  26. #include "../../feature/I2CPositionEncoder.h"
  27. #endif
  28. /**
  29. * G92: Set current position to given X Y Z E
  30. */
  31. void GcodeSuite::G92() {
  32. bool didXYZ = false,
  33. didE = parser.seenval('E');
  34. if (!didE) stepper.synchronize();
  35. LOOP_XYZE(i) {
  36. if (parser.seenval(axis_codes[i])) {
  37. #if IS_SCARA
  38. current_position[i] = parser.value_axis_units((AxisEnum)i);
  39. if (i != E_AXIS) didXYZ = true;
  40. #else
  41. #if HAS_POSITION_SHIFT
  42. const float p = current_position[i];
  43. #endif
  44. const float v = parser.value_axis_units((AxisEnum)i);
  45. current_position[i] = v;
  46. if (i != E_AXIS) {
  47. didXYZ = true;
  48. #if HAS_POSITION_SHIFT
  49. position_shift[i] += v - p; // Offset the coordinate space
  50. update_software_endstops((AxisEnum)i);
  51. #endif
  52. }
  53. #endif
  54. }
  55. }
  56. if (didXYZ)
  57. SYNC_PLAN_POSITION_KINEMATIC();
  58. else if (didE)
  59. sync_plan_position_e();
  60. report_current_position();
  61. }