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.

M218.cpp 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 "../../inc/MarlinConfig.h"
  23. #if HOTENDS > 1
  24. #include "../gcode.h"
  25. #include "../../module/motion.h"
  26. /**
  27. * M218 - set hotend offset (in linear units)
  28. *
  29. * T<tool>
  30. * X<xoffset>
  31. * Y<yoffset>
  32. * Z<zoffset> - Available with DUAL_X_CARRIAGE and SWITCHING_NOZZLE
  33. */
  34. void GcodeSuite::M218() {
  35. if (get_target_extruder_from_command() || target_extruder == 0) return;
  36. if (parser.seenval('X')) hotend_offset[X_AXIS][target_extruder] = parser.value_linear_units();
  37. if (parser.seenval('Y')) hotend_offset[Y_AXIS][target_extruder] = parser.value_linear_units();
  38. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  39. if (parser.seenval('Z')) hotend_offset[Z_AXIS][target_extruder] = parser.value_linear_units();
  40. #endif
  41. SERIAL_ECHO_START();
  42. SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
  43. HOTEND_LOOP() {
  44. SERIAL_CHAR(' ');
  45. SERIAL_ECHO(hotend_offset[X_AXIS][e]);
  46. SERIAL_CHAR(',');
  47. SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
  48. #if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE) || ENABLED(PARKING_EXTRUDER)
  49. SERIAL_CHAR(',');
  50. SERIAL_ECHO(hotend_offset[Z_AXIS][e]);
  51. #endif
  52. }
  53. SERIAL_EOL();
  54. }
  55. #endif // HOTENDS > 1