e0a9054e32
(NOTE: This push is likely buggy so proceed with caution. Just uploading to let people know where we're going.) - New report.c module. Moved all feedback functions into this module to centralize these processes. Includes realtime status reports, status messages, feedback messages. - Official support 6 work coordinate systems (G54-G59), which are persistently held in EEPROM memory. - New g-code support: G28.1, G30.1 stores current machine position as a home position into EEPROM. G10 L20 Px stores current machine position into work coordinates without needing to explicitly send XYZ words. - Homing performed with '$H' command. G28/G30 no longer start the homing cycle. This is how it's supposed to be. - New settings: Stepper enable invert and n_arc correction installed. - Updated and changed up some limits and homing functionality. Pull-off travel will now move after the homing cycle regardless of hard limits enabled. Fixed direction of pull-off travel (went wrong way). - Started on designing an internal Grbl command protocol based on the '$' settings letter. Commands with non numeric characters after '$' will perform switch commands, homing cycle, jogging, printing paramters, etc. Much more to do here. - Updated README to reflect all of the new features.
118 lines
4.7 KiB
C
Executable File
118 lines
4.7 KiB
C
Executable File
/*
|
|
nuts_bolts.h - Header file for shared definitions, variables, and functions
|
|
Part of Grbl
|
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
|
Copyright (c) 2011-2012 Sungeun K. Jeon
|
|
|
|
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
|
|
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "config.h"
|
|
|
|
#define false 0
|
|
#define true 1
|
|
|
|
#define N_AXIS 3 // Number of axes
|
|
#define X_AXIS 0 // Axis indexing value
|
|
#define Y_AXIS 1
|
|
#define Z_AXIS 2
|
|
|
|
#define MM_PER_INCH (25.4)
|
|
#define INCH_PER_MM (0.03937)
|
|
|
|
// Useful macros
|
|
#define clear_vector(a) memset(a, 0, sizeof(a))
|
|
#define clear_vector_float(a) memset(a, 0.0, sizeof(float)*3)
|
|
#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(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
|
|
// know when there is a runtime command to execute.
|
|
#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 EXEC_ALARM bit(5) // bitmask 00100000
|
|
// #define bit(6) // bitmask 01000000
|
|
// #define bit(7) // bitmask 10000000
|
|
|
|
// Define bit flag masks for sys.switches. (8 flag limit)
|
|
#define BITFLAG_BLOCK_DELETE bit(0)
|
|
#define BITFLAG_SINGLE_BLOCK bit(1)
|
|
#define BITFLAG_OPT_STOP bit(2)
|
|
// #define bit(3)
|
|
// #define bit(4)
|
|
// #define bit(5)
|
|
// #define bit(6)
|
|
// #define bit(7)
|
|
|
|
// Define Grbl system states for sys.state
|
|
|
|
// Define position lost in states?
|
|
|
|
|
|
// Define global system variables
|
|
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.
|
|
// uint8_t switches; // Switches state bitflag variable. For settings not governed by g-code.
|
|
|
|
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.
|
|
|
|
uint8_t coord_select; // Active work coordinate system number. Default: 0=G54.
|
|
float coord_system[N_AXIS]; // Current work coordinate system (G54+). Stores offset from absolute machine
|
|
// position in mm. Loaded from EEPROM when called.
|
|
float coord_offset[N_AXIS]; // Retains the G92 coordinate offset (work coordinates) relative to
|
|
// machine zero in mm.
|
|
|
|
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;
|
|
|
|
// 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
|
|
int read_float(char *line, uint8_t *char_counter, float *float_ptr);
|
|
|
|
// 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);
|
|
|
|
#endif
|