b3a53a4683
- Tons of new stuff in this release, which is fairly stable and well tested. However, much more is coming soon! - Real-time parking motion with safety door. When this compile option is enabled, an opened safety door will cause Grbl to automatically feed hold, retract, de-energize the spindle/coolant, and parks near Z max. After the door is closed and resume is commanded, this reverses and the program continues as if nothing happened. This is also highly configurable. See config.h for details. - New spindle max and min rpm ‘$’ settings! This has been requested often. Grbl will output 5V when commanded to turn on the spindle at its max rpm, and 0.02V with min rpm. The voltage and the rpm range are linear to each other. This should help users tweak their settings to get close to true rpm’s. - If the new max rpm ‘$’ setting is set = 0 or less than min rpm, the spindle speed PWM pin will act like a regular on/off spindle enable pin. On pin D11. - BEWARE: Your old EEPROM settings will be wiped! The new spindle rpm settings require a new settings version, so Grbl will automatically wipe and restore the EEPROM with the new defaults. - Control pin can now be inverted individually with a CONTROL_INVERT_MASK in the cpu_map header file. Not typical for users to need this, but handy to have. - Fixed bug when Grbl receive too many characters in a line and overflows. Previously it would respond with an error per overflow character and another acknowledge upon an EOL character. This broke the streaming protocol. Now fixed to only respond with an error after an EOL character. - Fixed a bug with the safety door during an ALARM mode. You now can’t home or unlock the axes until the safety door has been closed. This is for safety reasons (obviously.) - Tweaked some the Mega2560 cpu_map settings . Increased segment buffer size and fixed the spindle PWM settings to output at a higher PWM frequency. - Generalized the delay function used by G4 delay for use by parking motion. Allows non-blocking status reports and real-time control during re-energizing of the spindle and coolant. - Added spindle rpm max and min defaults to default.h files. - Added a new print float for rpm values.
156 lines
5.2 KiB
C
156 lines
5.2 KiB
C
/*
|
|
spindle_control.c - spindle control methods
|
|
Part of Grbl
|
|
|
|
Copyright (c) 2012-2015 Sungeun K. Jeon
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
|
|
|
Grbl 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.
|
|
|
|
Grbl 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 Grbl. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "grbl.h"
|
|
|
|
|
|
void spindle_init()
|
|
{
|
|
#ifdef VARIABLE_SPINDLE
|
|
|
|
// Configure variable spindle PWM and enable pin, if requried. On the Uno, PWM and enable are
|
|
// combined unless configured otherwise.
|
|
SPINDLE_PWM_DDR |= (1<<SPINDLE_PWM_BIT); // Configure as PWM output pin.
|
|
TCCRA_REGISTER = TCCRA_INIT_MASK; // Configure PWM output compare timer
|
|
TCCRB_REGISTER = TCCRB_INIT_MASK;
|
|
#ifdef CPU_MAP_ATMEGA2560
|
|
OCRA_REGISTER = OCRA_TOP_VALUE; // Set the top value for 16-bit fast PWM mode
|
|
SPINDLE_ENABLE_DDR |= (1<<SPINDLE_ENABLE_BIT); // Configure as output pin.
|
|
SPINDLE_DIRECTION_DDR |= (1<<SPINDLE_DIRECTION_BIT); // Configure as output pin.
|
|
#else // Otherwise 328p
|
|
#ifdef USE_SPINDLE_DIR_AS_ENABLE_PIN
|
|
SPINDLE_ENABLE_DDR |= (1<<SPINDLE_ENABLE_BIT); // Configure as output pin.
|
|
#else
|
|
SPINDLE_DIRECTION_DDR |= (1<<SPINDLE_DIRECTION_BIT); // Configure as output pin.
|
|
#endif
|
|
#endif
|
|
|
|
#else
|
|
|
|
// Configure no variable spindle and only enable pin.
|
|
SPINDLE_ENABLE_DDR |= (1<<SPINDLE_ENABLE_BIT); // Configure as output pin.
|
|
SPINDLE_DIRECTION_DDR |= (1<<SPINDLE_DIRECTION_BIT); // Configure as output pin.
|
|
|
|
#endif
|
|
|
|
spindle_stop();
|
|
}
|
|
|
|
|
|
void spindle_stop()
|
|
{
|
|
// On the Uno, spindle enable and PWM are shared. Other CPUs have seperate enable pin.
|
|
#ifdef VARIABLE_SPINDLE
|
|
TCCRA_REGISTER &= ~(1<<COMB_BIT); // Disable PWM. Output voltage is zero.
|
|
#if defined(CPU_MAP_ATMEGA2560) || defined(USE_SPINDLE_DIR_AS_ENABLE_PIN)
|
|
#ifdef INVERT_SPINDLE_ENABLE_PIN
|
|
SPINDLE_ENABLE_PORT |= (1<<SPINDLE_ENABLE_BIT); // Set pin to high
|
|
#else
|
|
SPINDLE_ENABLE_PORT &= ~(1<<SPINDLE_ENABLE_BIT); // Set pin to low
|
|
#endif
|
|
#endif
|
|
#else
|
|
#ifdef INVERT_SPINDLE_ENABLE_PIN
|
|
SPINDLE_ENABLE_PORT |= (1<<SPINDLE_ENABLE_BIT); // Set pin to high
|
|
#else
|
|
SPINDLE_ENABLE_PORT &= ~(1<<SPINDLE_ENABLE_BIT); // Set pin to low
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
|
|
void spindle_set_state(uint8_t state, float rpm)
|
|
{
|
|
if (sys.abort) { return; } // Block during abort.
|
|
|
|
// Halt or set spindle direction and rpm.
|
|
if (state == SPINDLE_DISABLE) {
|
|
|
|
spindle_stop();
|
|
|
|
} else {
|
|
|
|
#ifndef USE_SPINDLE_DIR_AS_ENABLE_PIN
|
|
if (state == SPINDLE_ENABLE_CW) {
|
|
SPINDLE_DIRECTION_PORT &= ~(1<<SPINDLE_DIRECTION_BIT);
|
|
} else {
|
|
SPINDLE_DIRECTION_PORT |= (1<<SPINDLE_DIRECTION_BIT);
|
|
}
|
|
#endif
|
|
|
|
#ifdef VARIABLE_SPINDLE
|
|
|
|
// TODO: Install the optional capability for frequency-based output for servos.
|
|
#ifdef CPU_MAP_ATMEGA2560
|
|
uint16_t current_pwm; // 2560 PWM register is 16-bit.
|
|
#else
|
|
uint8_t current_pwm; // 328p PWM register is 8-bit.
|
|
#endif
|
|
|
|
// Calculate PWM register value based on rpm max/min settings and programmed rpm.
|
|
if (settings.rpm_max <= settings.rpm_min) {
|
|
// No PWM range possible. Set simple on/off spindle control pin state.
|
|
current_pwm = PWM_MAX_VALUE;
|
|
} else {
|
|
if (rpm > settings.rpm_max) { rpm = settings.rpm_max; }
|
|
if (rpm < settings.rpm_min) { rpm = settings.rpm_min; }
|
|
#ifdef SPINDLE_MINIMUM_PWM
|
|
float pwm_gradient = (PWM_MAX_VALUE-SPINDLE_MINIMUM_PWM)/(settings.rpm_max-settings.rpm_min);
|
|
current_pwm = floor( (rpm-settings.rpm_min)*pwm_gradient + (SPINDLE_MINIMUM_PWM+0.5));
|
|
#else
|
|
float pwm_gradient = (PWM_MAX_VALUE)/(settings.rpm_max-settings.rpm_min);
|
|
current_pwm = floor( (rpm-settings.rpm_min)*pwm_gradient + 0.5);
|
|
#endif
|
|
}
|
|
|
|
OCR_REGISTER = current_pwm; // Set PWM output level.
|
|
TCCRA_REGISTER |= (1<<COMB_BIT); // Ensure PWM output is enabled.
|
|
|
|
// On the Uno, spindle enable and PWM are shared, unless otherwise specified.
|
|
#if defined(CPU_MAP_ATMEGA2560) || defined(USE_SPINDLE_DIR_AS_ENABLE_PIN)
|
|
#ifdef INVERT_SPINDLE_ENABLE_PIN
|
|
SPINDLE_ENABLE_PORT &= ~(1<<SPINDLE_ENABLE_BIT);
|
|
#else
|
|
SPINDLE_ENABLE_PORT |= (1<<SPINDLE_ENABLE_BIT);
|
|
#endif
|
|
#endif
|
|
|
|
#else
|
|
|
|
#ifdef INVERT_SPINDLE_ENABLE_PIN
|
|
SPINDLE_ENABLE_PORT &= ~(1<<SPINDLE_ENABLE_BIT);
|
|
#else
|
|
SPINDLE_ENABLE_PORT |= (1<<SPINDLE_ENABLE_BIT);
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
}
|
|
|
|
|
|
void spindle_run(uint8_t state, float rpm)
|
|
{
|
|
if (sys.state == STATE_CHECK_MODE) { return; }
|
|
protocol_buffer_synchronize(); // Empty planner buffer to ensure spindle is set when programmed.
|
|
spindle_set_state(state, rpm);
|
|
}
|