2009-01-24 23:48:56 +00:00
|
|
|
/*
|
2011-12-09 01:47:48 +00:00
|
|
|
nuts_bolts.h - Header file for shared definitions, variables, and functions
|
2009-01-24 23:48:56 +00:00
|
|
|
Part of Grbl
|
|
|
|
|
2011-01-14 15:45:18 +00:00
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2012-01-29 03:41:08 +00:00
|
|
|
Copyright (c) 2011-2012 Sungeun K. Jeon
|
2009-01-24 23:48:56 +00:00
|
|
|
|
|
|
|
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
|
2012-02-11 18:59:35 +00:00
|
|
|
#include <config.h>
|
2009-01-24 23:48:56 +00:00
|
|
|
#include <string.h>
|
2011-02-18 21:59:16 +00:00
|
|
|
#include <stdint.h>
|
2011-02-19 23:29:56 +00:00
|
|
|
#include <stdbool.h>
|
2009-01-24 23:48:56 +00:00
|
|
|
|
2011-02-18 22:04:12 +00:00
|
|
|
#define false 0
|
|
|
|
#define true 1
|
2009-01-24 23:48:56 +00:00
|
|
|
|
|
|
|
#define X_AXIS 0
|
|
|
|
#define Y_AXIS 1
|
|
|
|
#define Z_AXIS 2
|
|
|
|
|
2012-01-06 17:10:41 +00:00
|
|
|
#define MM_PER_INCH (25.4)
|
|
|
|
|
|
|
|
// Useful macros
|
2011-02-11 22:53:58 +00:00
|
|
|
#define clear_vector(a) memset(a, 0, sizeof(a))
|
2011-09-05 00:53:25 +00:00
|
|
|
#define clear_vector_double(a) memset(a, 0.0, sizeof(a))
|
2011-02-11 22:53:58 +00:00
|
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
2011-09-03 21:31:48 +00:00
|
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
2011-02-11 22:53:58 +00:00
|
|
|
|
2012-01-06 17:10:41 +00:00
|
|
|
// Bit field and masking macros
|
|
|
|
#define bit(n) (1 << n)
|
|
|
|
#define bit_true(x,mask) (x |= mask)
|
|
|
|
#define bit_false(x,mask) (x &= ~mask)
|
|
|
|
#define bit_toggle(x,mask) (x ^= mask)
|
|
|
|
#define bit_istrue(x,mask) ((x & mask) != 0)
|
|
|
|
#define bit_isfalse(x,mask) ((x & mask) == 0)
|
|
|
|
|
|
|
|
// Define system executor bit map. Used internally by runtime protocol as runtime command flags,
|
|
|
|
// which notifies the main program to execute the specified runtime command asynchronously.
|
|
|
|
// NOTE: The system executor uses an unsigned 8-bit volatile variable (8 flag limit.) The default
|
|
|
|
// flags are always false, so the runtime protocol only needs to check for a non-zero value to
|
2011-12-09 01:47:48 +00:00
|
|
|
// know when there is a runtime command to execute.
|
2012-01-06 17:10:41 +00:00
|
|
|
#define EXEC_STATUS_REPORT bit(0) // bitmask 00000001
|
|
|
|
#define EXEC_CYCLE_START bit(1) // bitmask 00000010
|
|
|
|
#define EXEC_CYCLE_STOP bit(2) // bitmask 00000100
|
|
|
|
#define EXEC_FEED_HOLD bit(3) // bitmask 00001000
|
|
|
|
#define EXEC_RESET bit(4) // bitmask 00010000
|
|
|
|
// #define bit(5) // bitmask 00100000
|
|
|
|
// #define bit(6) // bitmask 01000000
|
|
|
|
// #define bit(7) // bitmask 10000000
|
2011-12-09 01:47:48 +00:00
|
|
|
|
|
|
|
// Define global system variables
|
2012-01-06 17:10:41 +00:00
|
|
|
typedef struct {
|
|
|
|
uint8_t abort; // System abort flag. Forces exit back to main loop for reset.
|
|
|
|
uint8_t feed_hold; // Feed hold flag. Held true during feed hold. Released when ready to resume.
|
|
|
|
uint8_t auto_start; // Planner auto-start flag. Toggled off during feed hold. Defaulted by settings.
|
|
|
|
|
2012-01-10 15:34:48 +00:00
|
|
|
int32_t position[3]; // Real-time machine (aka home) position vector in steps.
|
|
|
|
// NOTE: This may need to be a volatile variable, if problems arise.
|
2012-02-11 18:59:35 +00:00
|
|
|
|
|
|
|
uint8_t coord_select; // Active work coordinate system number. Default: 0=G54.
|
|
|
|
double coord_system[N_COORDINATE_SYSTEM][3]; // Work coordinate systems (G54+). Stores offset from
|
|
|
|
// absolute machine position in mm.
|
|
|
|
// Rows: Work system number (0=G54,1=G55,...5=G59), Columns: XYZ Offsets
|
|
|
|
double coord_offset[3]; // Retains the G92 coordinate offset (work coordinates) relative to
|
|
|
|
// machine zero in mm.
|
2012-01-06 17:10:41 +00:00
|
|
|
|
|
|
|
volatile uint8_t cycle_start; // Cycle start flag. Set by stepper subsystem or main program.
|
|
|
|
volatile uint8_t execute; // Global system runtime executor bitflag variable. See EXEC bitmasks.
|
|
|
|
} system_t;
|
|
|
|
extern system_t sys;
|
2011-12-09 01:47:48 +00:00
|
|
|
|
2011-02-18 22:08:06 +00:00
|
|
|
// 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 double_ptr is
|
|
|
|
// a pointer to the result variable. Returns true when it succeeds
|
2011-02-18 21:59:16 +00:00
|
|
|
int read_double(char *line, uint8_t *char_counter, double *double_ptr);
|
|
|
|
|
2012-01-16 01:25:12 +00:00
|
|
|
// Delays variable-defined milliseconds. Compiler compatibility fix for _delay_ms().
|
|
|
|
void delay_ms(uint16_t ms);
|
|
|
|
|
2012-02-11 18:59:35 +00:00
|
|
|
// Delays variable-defined microseconds. Compiler compatibility fix for _delay_us().
|
|
|
|
void delay_us(uint16_t us);
|
|
|
|
|
2009-01-24 23:48:56 +00:00
|
|
|
#endif
|