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 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 "../gcode.h"
  23. #include "../../module/motion.h"
  24. #include "../../module/stepper.h"
  25. #if ENABLED(I2C_POSITION_ENCODERS)
  26. #include "../../feature/encoder_i2c.h"
  27. #endif
  28. /**
  29. * G92: Set current position to given X Y Z E
  30. */
  31. void GcodeSuite::G92() {
  32. bool sync_E = false, sync_XYZ = false;
  33. #if ENABLED(USE_GCODE_SUBCODES)
  34. const uint8_t subcode_G92 = parser.subcode;
  35. #else
  36. constexpr uint8_t subcode_G92 = 0;
  37. #endif
  38. switch (subcode_G92) {
  39. default: break;
  40. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  41. case 1: {
  42. // Zero the G92 values and restore current position
  43. #if !IS_SCARA
  44. LOOP_XYZ(i) if (position_shift[i]) {
  45. position_shift[i] = 0;
  46. update_workspace_offset((AxisEnum)i);
  47. }
  48. #endif // Not SCARA
  49. } return;
  50. #endif
  51. #if ENABLED(POWER_LOSS_RECOVERY)
  52. case 9: {
  53. LOOP_XYZE(i) {
  54. if (parser.seenval(axis_codes[i])) {
  55. current_position[i] = parser.value_axis_units((AxisEnum)i);
  56. if (i == E_AXIS) sync_E = true; else sync_XYZ = true;
  57. }
  58. }
  59. } break;
  60. #endif
  61. case 0: {
  62. LOOP_XYZE(i) {
  63. if (parser.seenval(axis_codes[i])) {
  64. const float l = parser.value_axis_units((AxisEnum)i),
  65. v = i == E_AXIS ? l : LOGICAL_TO_NATIVE(l, i),
  66. d = v - current_position[i];
  67. if (!NEAR_ZERO(d)) {
  68. #if IS_SCARA || !HAS_POSITION_SHIFT
  69. if (i == E_AXIS) sync_E = true; else sync_XYZ = true;
  70. current_position[i] = v; // Without workspaces revert to Marlin 1.0 behavior
  71. #elif HAS_POSITION_SHIFT
  72. if (i == E_AXIS) {
  73. sync_E = true;
  74. current_position.e = v; // When using coordinate spaces, only E is set directly
  75. }
  76. else {
  77. position_shift[i] += d; // Other axes simply offset the coordinate space
  78. update_workspace_offset((AxisEnum)i);
  79. }
  80. #endif
  81. }
  82. }
  83. }
  84. } break;
  85. }
  86. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  87. // Apply workspace offset to the active coordinate system
  88. if (WITHIN(active_coordinate_system, 0, MAX_COORDINATE_SYSTEMS - 1))
  89. coordinate_system[active_coordinate_system] = position_shift;
  90. #endif
  91. if (sync_XYZ) sync_plan_position();
  92. else if (sync_E) sync_plan_position_e();
  93. report_current_position();
  94. }