2019-06-28 06:06:49 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-06-28 06:06:49 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2019-06-28 06:06:49 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* feature/spindle_laser.cpp
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if HAS_CUTTER
|
|
|
|
|
|
|
|
#include "spindle_laser.h"
|
|
|
|
|
|
|
|
SpindleLaser cutter;
|
2020-06-08 07:47:31 +02:00
|
|
|
uint8_t SpindleLaser::power;
|
|
|
|
bool SpindleLaser::isReady; // Ready to apply power setting from the UI to OCR
|
|
|
|
cutter_power_t SpindleLaser::menuPower, // Power set via LCD menu in PWM, PERCENT, or RPM
|
|
|
|
SpindleLaser::unitPower; // LCD status power in PWM, PERCENT, or RPM
|
2019-06-28 06:06:49 +02:00
|
|
|
|
2020-04-03 02:31:08 +02:00
|
|
|
#if ENABLED(MARLIN_DEV_MODE)
|
2020-06-08 07:47:31 +02:00
|
|
|
cutter_frequency_t SpindleLaser::frequency; // setting PWM frequency; range: 2K - 50K
|
2020-04-03 02:31:08 +02:00
|
|
|
#endif
|
2019-10-15 23:10:20 +02:00
|
|
|
#define SPINDLE_LASER_PWM_OFF ((SPINDLE_LASER_PWM_INVERT) ? 255 : 0)
|
|
|
|
|
2020-04-03 02:31:08 +02:00
|
|
|
//
|
|
|
|
// Init the cutter to a safe OFF state
|
|
|
|
//
|
2019-06-28 06:06:49 +02:00
|
|
|
void SpindleLaser::init() {
|
2020-06-08 07:47:31 +02:00
|
|
|
OUT_WRITE(SPINDLE_LASER_ENA_PIN, !SPINDLE_LASER_ACTIVE_HIGH); // Init spindle to off
|
2019-06-28 06:06:49 +02:00
|
|
|
#if ENABLED(SPINDLE_CHANGE_DIR)
|
2020-06-08 07:47:31 +02:00
|
|
|
OUT_WRITE(SPINDLE_DIR_PIN, SPINDLE_INVERT_DIR ? 255 : 0); // Init rotation to clockwise (M3)
|
2019-06-28 06:06:49 +02:00
|
|
|
#endif
|
2019-10-15 23:10:20 +02:00
|
|
|
#if ENABLED(SPINDLE_LASER_PWM)
|
2019-06-28 06:06:49 +02:00
|
|
|
SET_PWM(SPINDLE_LASER_PWM_PIN);
|
2020-06-08 07:47:31 +02:00
|
|
|
analogWrite(pin_t(SPINDLE_LASER_PWM_PIN), SPINDLE_LASER_PWM_OFF); // set to lowest speed
|
2019-06-28 06:06:49 +02:00
|
|
|
#endif
|
2020-04-03 02:31:08 +02:00
|
|
|
#if ENABLED(HAL_CAN_SET_PWM_FREQ) && defined(SPINDLE_LASER_FREQUENCY)
|
|
|
|
set_pwm_frequency(pin_t(SPINDLE_LASER_PWM_PIN), SPINDLE_LASER_FREQUENCY);
|
2020-04-22 23:35:03 +02:00
|
|
|
TERN_(MARLIN_DEV_MODE, frequency = SPINDLE_LASER_FREQUENCY);
|
2020-04-03 02:31:08 +02:00
|
|
|
#endif
|
2019-06-28 06:06:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(SPINDLE_LASER_PWM)
|
|
|
|
/**
|
2020-06-08 07:47:31 +02:00
|
|
|
* Set the cutter PWM directly to the given ocr value
|
|
|
|
*/
|
2019-06-28 06:06:49 +02:00
|
|
|
void SpindleLaser::set_ocr(const uint8_t ocr) {
|
2020-06-08 07:47:31 +02:00
|
|
|
WRITE(SPINDLE_LASER_ENA_PIN, SPINDLE_LASER_ACTIVE_HIGH); // turn spindle on
|
2019-10-15 23:10:20 +02:00
|
|
|
analogWrite(pin_t(SPINDLE_LASER_PWM_PIN), ocr ^ SPINDLE_LASER_PWM_OFF);
|
2019-06-28 06:06:49 +02:00
|
|
|
}
|
2020-06-08 07:47:31 +02:00
|
|
|
void SpindleLaser::ocr_off() {
|
|
|
|
WRITE(SPINDLE_LASER_ENA_PIN, !SPINDLE_LASER_ACTIVE_HIGH); // Turn spindle off
|
|
|
|
analogWrite(pin_t(SPINDLE_LASER_PWM_PIN), SPINDLE_LASER_PWM_OFF); // Only write low byte
|
|
|
|
}
|
2019-06-28 06:06:49 +02:00
|
|
|
#endif
|
|
|
|
|
2020-04-03 02:31:08 +02:00
|
|
|
//
|
2020-06-08 07:47:31 +02:00
|
|
|
// Set cutter ON/OFF state (and PWM) to the given cutter power value
|
2020-04-03 02:31:08 +02:00
|
|
|
//
|
2020-06-08 07:47:31 +02:00
|
|
|
void SpindleLaser::apply_power(const uint8_t opwr) {
|
|
|
|
static uint8_t last_power_applied = 0;
|
|
|
|
if (opwr == last_power_applied) return;
|
|
|
|
last_power_applied = opwr;
|
|
|
|
power = opwr;
|
2019-06-28 06:06:49 +02:00
|
|
|
#if ENABLED(SPINDLE_LASER_PWM)
|
2020-06-08 07:47:31 +02:00
|
|
|
if (cutter.unitPower == 0 && CUTTER_UNIT_IS(RPM)) {
|
|
|
|
ocr_off();
|
|
|
|
isReady = false;
|
|
|
|
}
|
|
|
|
else if (enabled() || ENABLED(CUTTER_POWER_RELATIVE)) {
|
|
|
|
set_ocr(power);
|
|
|
|
isReady = true;
|
|
|
|
}
|
2019-10-15 23:10:20 +02:00
|
|
|
else {
|
2020-06-08 07:47:31 +02:00
|
|
|
ocr_off();
|
|
|
|
isReady = false;
|
2019-06-28 06:06:49 +02:00
|
|
|
}
|
|
|
|
#else
|
2020-06-08 07:47:31 +02:00
|
|
|
WRITE(SPINDLE_LASER_ENA_PIN, enabled() == SPINDLE_LASER_ACTIVE_HIGH);
|
|
|
|
isReady = true;
|
2019-06-28 06:06:49 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(SPINDLE_CHANGE_DIR)
|
2020-04-03 02:31:08 +02:00
|
|
|
//
|
|
|
|
// Set the spindle direction and apply immediately
|
|
|
|
// Stop on direction change if SPINDLE_STOP_ON_DIR_CHANGE is enabled
|
|
|
|
//
|
2019-06-28 06:06:49 +02:00
|
|
|
void SpindleLaser::set_direction(const bool reverse) {
|
|
|
|
const bool dir_state = (reverse == SPINDLE_INVERT_DIR); // Forward (M3) HIGH when not inverted
|
2020-04-22 23:35:03 +02:00
|
|
|
if (TERN0(SPINDLE_STOP_ON_DIR_CHANGE, enabled()) && READ(SPINDLE_DIR_PIN) != dir_state) disable();
|
2019-06-28 06:06:49 +02:00
|
|
|
WRITE(SPINDLE_DIR_PIN, dir_state);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // HAS_CUTTER
|