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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 "../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 didE = false;
  33. #if IS_SCARA || !HAS_POSITION_SHIFT
  34. bool didXYZ = false;
  35. #else
  36. constexpr bool didXYZ = false;
  37. #endif
  38. #if USE_GCODE_SUBCODES
  39. const uint8_t subcode_G92 = parser.subcode;
  40. #else
  41. constexpr uint8_t subcode_G92 = 0;
  42. #endif
  43. switch (subcode_G92) {
  44. default: break;
  45. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  46. case 1: {
  47. // Zero the G92 values and restore current position
  48. #if !IS_SCARA
  49. LOOP_XYZ(i) {
  50. const float v = position_shift[i];
  51. if (v) {
  52. position_shift[i] = 0;
  53. update_workspace_offset((AxisEnum)i);
  54. }
  55. }
  56. #endif // Not SCARA
  57. } return;
  58. #endif
  59. #if ENABLED(POWER_LOSS_RECOVERY)
  60. case 9: {
  61. LOOP_XYZE(i) {
  62. if (parser.seenval(axis_codes[i])) {
  63. current_position[i] = parser.value_axis_units((AxisEnum)i);
  64. #if IS_SCARA || !HAS_POSITION_SHIFT
  65. if (i == E_AXIS) didE = true; else didXYZ = true;
  66. #elif HAS_POSITION_SHIFT
  67. if (i == E_AXIS) didE = true;
  68. #endif
  69. }
  70. }
  71. } break;
  72. #endif
  73. case 0: {
  74. LOOP_XYZE(i) {
  75. if (parser.seenval(axis_codes[i])) {
  76. const float l = parser.value_axis_units((AxisEnum)i),
  77. v = i == E_AXIS ? l : LOGICAL_TO_NATIVE(l, i),
  78. d = v - current_position[i];
  79. if (!NEAR_ZERO(d)) {
  80. #if IS_SCARA || !HAS_POSITION_SHIFT
  81. if (i == E_AXIS) didE = true; else didXYZ = true;
  82. current_position[i] = v; // Without workspaces revert to Marlin 1.0 behavior
  83. #elif HAS_POSITION_SHIFT
  84. if (i == E_AXIS) {
  85. didE = true;
  86. current_position[E_AXIS] = v; // When using coordinate spaces, only E is set directly
  87. }
  88. else {
  89. position_shift[i] += d; // Other axes simply offset the coordinate space
  90. update_workspace_offset((AxisEnum)i);
  91. }
  92. #endif
  93. }
  94. }
  95. }
  96. } break;
  97. }
  98. #if ENABLED(CNC_COORDINATE_SYSTEMS)
  99. // Apply workspace offset to the active coordinate system
  100. if (WITHIN(active_coordinate_system, 0, MAX_COORDINATE_SYSTEMS - 1))
  101. COPY(coordinate_system[active_coordinate_system], position_shift);
  102. #endif
  103. if (didXYZ) sync_plan_position();
  104. else if (didE) sync_plan_position_e();
  105. report_current_position();
  106. }