Firmware2/Marlin/src/gcode/control/M3-M5.cpp

87 lines
2.7 KiB
C++
Raw Normal View History

/**
* Marlin 3D Printer Firmware
2019-02-12 22:06:53 +01:00
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
2017-09-16 08:07:00 +02:00
#include "../../inc/MarlinConfig.h"
2019-06-28 06:06:49 +02:00
#if HAS_CUTTER
2017-09-16 08:07:00 +02:00
#include "../gcode.h"
2019-06-28 06:06:49 +02:00
#include "../../feature/spindle_laser.h"
2017-09-16 08:07:00 +02:00
#include "../../module/stepper.h"
/**
2019-06-28 06:06:49 +02:00
* M3 - Cutter ON (Clockwise)
* M4 - Cutter ON (Counter-clockwise)
*
2019-06-28 06:06:49 +02:00
* S<power> - Set power. S0 turns it off.
* O<ocr> - Set power and OCR
*
2019-06-28 06:06:49 +02:00
* If no PWM pin is defined then M3/M4 just turns it on.
*
2019-06-28 06:06:49 +02:00
* At least 12.8KHz (50Hz * 256) is needed for Spindle PWM.
* Hardware PWM is required on AVR. ISRs are too slow.
*
* NOTE: WGM for timers 3, 4, and 5 must be either Mode 1 or Mode 5.
* No other settings give a PWM signal that goes from 0 to 5 volts.
*
* The system automatically sets WGM to Mode 1, so no special
* initialization is needed.
*
* WGM bits for timer 2 are automatically set by the system to
* Mode 1. This produces an acceptable 0 to 5 volt signal.
* No special initialization is needed.
*
* NOTE: A minimum PWM frequency of 50 Hz is needed. All prescaler
* factors for timers 2, 3, 4, and 5 are acceptable.
*
* SPINDLE_LASER_ENA_PIN needs an external pullup or it may power on
* the spindle/laser during power-up or when connecting to the host
* (usually goes through a reset which sets all I/O pins to tri-state)
*
* PWM duty cycle goes from 0 (off) to 255 (always on).
*/
2019-01-21 06:41:47 +01:00
void GcodeSuite::M3_M4(const bool is_M4) {
2019-06-28 06:06:49 +02:00
planner.synchronize(); // Wait for previous movement commands (G0/G0/G2/G3) to complete before changing power
2019-01-21 06:41:47 +01:00
2019-06-28 06:06:49 +02:00
cutter.set_direction(is_M4);
#if ENABLED(SPINDLE_LASER_PWM)
2019-06-28 06:06:49 +02:00
if (parser.seen('O'))
cutter.set_ocr_power(parser.value_byte()); // The OCR is a value from 0 to 255 (uint8_t)
else
cutter.set_power(parser.intval('S', 255));
#else
2019-06-28 06:06:49 +02:00
cutter.set_enabled(true);
#endif
}
/**
2019-06-28 06:06:49 +02:00
* M5 - Cutter OFF
2017-09-16 08:07:00 +02:00
*/
void GcodeSuite::M5() {
planner.synchronize();
2019-06-28 06:06:49 +02:00
cutter.set_enabled(false);
}
2017-09-16 08:07:00 +02:00
2019-06-28 06:06:49 +02:00
#endif // HAS_CUTTER