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.
85 lines
3.0 KiB
C
85 lines
3.0 KiB
C
/*
|
|
nuts_bolts.h - Header file for shared definitions, variables, and functions
|
|
Part of Grbl
|
|
|
|
Copyright (c) 2011-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/>.
|
|
*/
|
|
|
|
#ifndef nuts_bolts_h
|
|
#define nuts_bolts_h
|
|
|
|
#define false 0
|
|
#define true 1
|
|
|
|
// Axis array index values. Must start with 0 and be continuous.
|
|
#define N_AXIS 3 // Number of axes
|
|
#define X_AXIS 0 // Axis indexing value.
|
|
#define Y_AXIS 1
|
|
#define Z_AXIS 2
|
|
// #define A_AXIS 3
|
|
|
|
// CoreXY motor assignments. DO NOT ALTER.
|
|
// NOTE: If the A and B motor axis bindings are changed, this effects the CoreXY equations.
|
|
#ifdef COREXY
|
|
#define A_MOTOR X_AXIS // Must be X_AXIS
|
|
#define B_MOTOR Y_AXIS // Must be Y_AXIS
|
|
#endif
|
|
|
|
// Conversions
|
|
#define MM_PER_INCH (25.40)
|
|
#define INCH_PER_MM (0.0393701)
|
|
#define TICKS_PER_MICROSECOND (F_CPU/1000000)
|
|
|
|
#define DELAY_MODE_DWELL 0
|
|
#define DELAY_MODE_SAFETY_DOOR 1
|
|
|
|
// Useful macros
|
|
#define clear_vector(a) memset(a, 0, sizeof(a))
|
|
#define clear_vector_float(a) memset(a, 0.0, sizeof(float)*N_AXIS)
|
|
// #define clear_vector_long(a) memset(a, 0.0, sizeof(long)*N_AXIS)
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
|
|
|
// Bit field and masking macros
|
|
#define bit(n) (1 << n)
|
|
#define bit_true_atomic(x,mask) {uint8_t sreg = SREG; cli(); (x) |= (mask); SREG = sreg; }
|
|
#define bit_false_atomic(x,mask) {uint8_t sreg = SREG; cli(); (x) &= ~(mask); SREG = sreg; }
|
|
#define bit_toggle_atomic(x,mask) {uint8_t sreg = SREG; cli(); (x) ^= (mask); SREG = sreg; }
|
|
#define bit_true(x,mask) (x) |= (mask)
|
|
#define bit_false(x,mask) (x) &= ~(mask)
|
|
#define bit_istrue(x,mask) ((x & mask) != 0)
|
|
#define bit_isfalse(x,mask) ((x & mask) == 0)
|
|
|
|
// Read a floating point value from a string. Line points to the input buffer, char_counter
|
|
// is the indexer pointing to the current character of the line, while float_ptr is
|
|
// a pointer to the result variable. Returns true when it succeeds
|
|
uint8_t read_float(char *line, uint8_t *char_counter, float *float_ptr);
|
|
|
|
// Non-blocking delay function used for general operation and suspend features.
|
|
void delay_sec(float seconds, uint8_t mode);
|
|
|
|
// Delays variable-defined milliseconds. Compiler compatibility fix for _delay_ms().
|
|
void delay_ms(uint16_t ms);
|
|
|
|
// Delays variable-defined microseconds. Compiler compatibility fix for _delay_us().
|
|
void delay_us(uint32_t us);
|
|
|
|
// Computes hypotenuse, avoiding avr-gcc's bloated version and the extra error checking.
|
|
float hypot_f(float x, float y);
|
|
|
|
#endif
|