2009-01-25 00:48:56 +01:00
|
|
|
/*
|
2011-02-05 00:55:37 +01:00
|
|
|
settings.h - eeprom configuration handling
|
2009-01-25 00:48:56 +01:00
|
|
|
Part of Grbl
|
|
|
|
|
2011-01-14 16:45:18 +01:00
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2012-10-10 06:01:10 +02:00
|
|
|
Copyright (c) 2011-2012 Sungeun K. Jeon
|
2011-09-07 03:39:14 +02:00
|
|
|
|
2009-01-25 00:48:56 +01: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/>.
|
|
|
|
*/
|
|
|
|
|
2011-02-05 00:45:41 +01:00
|
|
|
#ifndef settings_h
|
|
|
|
#define settings_h
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2010-12-20 14:01:38 +01:00
|
|
|
#include <math.h>
|
|
|
|
#include <inttypes.h>
|
2012-11-01 16:37:27 +01:00
|
|
|
#include "nuts_bolts.h"
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2012-10-09 00:06:57 +02:00
|
|
|
#define GRBL_VERSION "0.8b"
|
2010-03-03 01:39:44 +01:00
|
|
|
|
2010-03-07 20:29:18 +01:00
|
|
|
// Version of the EEPROM data. Will be used to migrate existing data from older versions of Grbl
|
|
|
|
// when firmware is upgraded. Always stored in byte 0 of eeprom
|
2012-11-01 16:37:27 +01:00
|
|
|
#define SETTINGS_VERSION 56
|
2012-10-10 06:01:10 +02:00
|
|
|
|
2012-10-22 00:55:59 +02:00
|
|
|
// Define bit flag masks for the boolean settings in settings.flag.
|
Hard limits, homing direction, pull-off limits after homing, status reports in mm or inches, system alarm, and more.
- Thank you statement added for Alden Hart of Synthetos.
- Hard limits option added, which also works with homing by pulling off
the switches to help prevent unintended triggering. Hard limits use a
interrupt to sense a falling edge pin change and immediately go into
alarm mode, which stops everything and forces the user to issue a reset
(Ctrl-x) or reboot.
- Auto cycle start now a configuration option.
- Alarm mode: A new method to kill all Grbl processes in the event of
something catastrophic or potentially catastropic. Just works with hard
limits for now, but will be expanded to include g-code errors (most
likely) and other events.
- Updated status reports to be configurable in inches or mm mode. Much
more to do here, but this is the first step.
- New settings: auto cycle start, hard limit enable, homing direction
mask (which works the same as the stepper mask), homing pulloff
distance (or distance traveled from homed machine zero to prevent
accidental limit trip).
- Minor memory liberation and calculation speed ups.
2012-10-17 05:29:45 +02:00
|
|
|
#define BITFLAG_REPORT_INCHES bit(0)
|
|
|
|
#define BITFLAG_AUTO_START bit(1)
|
2012-11-01 16:37:27 +01:00
|
|
|
#define BITFLAG_INVERT_ST_ENABLE bit(2)
|
|
|
|
#define BITFLAG_HARD_LIMIT_ENABLE bit(3)
|
|
|
|
#define BITFLAG_HOMING_ENABLE bit(4)
|
2010-03-07 20:29:18 +01:00
|
|
|
|
2012-11-01 16:37:27 +01:00
|
|
|
// Define EEPROM memory address location values for on-demand settings and parameters
|
|
|
|
#define EEPROM_ADDR_GLOBAL 1
|
|
|
|
#define EEPROM_ADDR_PARAMETERS 512
|
|
|
|
#define EEPROM_ADDR_STARTUP_SCRIPT 768
|
|
|
|
|
|
|
|
// Define EEPROM address indexing for coordinate parameters
|
|
|
|
#define N_COORDINATE_SYSTEM 6 // Number of supported work coordinate systems (from index 1)
|
|
|
|
#define SETTING_INDEX_NCOORD N_COORDINATE_SYSTEM+2 // Total number of system stored (from index 0)
|
|
|
|
// NOTE: Work coordinate indices are (0=G54, 1=G55, ... , 6=G59)
|
|
|
|
#define SETTING_INDEX_G28 N_COORDINATE_SYSTEM // Home position 1
|
|
|
|
#define SETTING_INDEX_G30 N_COORDINATE_SYSTEM+1 // Home position 2
|
|
|
|
#define SETTING_INDEX_G92 N_COORDINATE_SYSTEM+2 // Coordinate offset
|
|
|
|
|
|
|
|
// Global persistent settings (Stored from byte EEPROM_ADDR_GLOBAL onwards)
|
2011-01-25 22:51:37 +01:00
|
|
|
typedef struct {
|
2012-10-08 23:57:58 +02:00
|
|
|
float steps_per_mm[3];
|
2010-03-07 20:29:18 +01:00
|
|
|
uint8_t microsteps;
|
|
|
|
uint8_t pulse_microseconds;
|
2012-10-08 23:57:58 +02:00
|
|
|
float default_feed_rate;
|
|
|
|
float default_seek_rate;
|
2010-03-07 20:29:18 +01:00
|
|
|
uint8_t invert_mask;
|
2012-10-08 23:57:58 +02:00
|
|
|
float mm_per_arc_segment;
|
|
|
|
float acceleration;
|
|
|
|
float junction_deviation;
|
2012-10-22 00:55:59 +02:00
|
|
|
uint8_t flags; // Contains default boolean settings
|
Hard limits, homing direction, pull-off limits after homing, status reports in mm or inches, system alarm, and more.
- Thank you statement added for Alden Hart of Synthetos.
- Hard limits option added, which also works with homing by pulling off
the switches to help prevent unintended triggering. Hard limits use a
interrupt to sense a falling edge pin change and immediately go into
alarm mode, which stops everything and forces the user to issue a reset
(Ctrl-x) or reboot.
- Auto cycle start now a configuration option.
- Alarm mode: A new method to kill all Grbl processes in the event of
something catastrophic or potentially catastropic. Just works with hard
limits for now, but will be expanded to include g-code errors (most
likely) and other events.
- Updated status reports to be configurable in inches or mm mode. Much
more to do here, but this is the first step.
- New settings: auto cycle start, hard limit enable, homing direction
mask (which works the same as the stepper mask), homing pulloff
distance (or distance traveled from homed machine zero to prevent
accidental limit trip).
- Minor memory liberation and calculation speed ups.
2012-10-17 05:29:45 +02:00
|
|
|
uint8_t homing_dir_mask;
|
2012-10-10 06:01:10 +02:00
|
|
|
float homing_feed_rate;
|
|
|
|
float homing_seek_rate;
|
|
|
|
uint16_t homing_debounce_delay;
|
Hard limits, homing direction, pull-off limits after homing, status reports in mm or inches, system alarm, and more.
- Thank you statement added for Alden Hart of Synthetos.
- Hard limits option added, which also works with homing by pulling off
the switches to help prevent unintended triggering. Hard limits use a
interrupt to sense a falling edge pin change and immediately go into
alarm mode, which stops everything and forces the user to issue a reset
(Ctrl-x) or reboot.
- Auto cycle start now a configuration option.
- Alarm mode: A new method to kill all Grbl processes in the event of
something catastrophic or potentially catastropic. Just works with hard
limits for now, but will be expanded to include g-code errors (most
likely) and other events.
- Updated status reports to be configurable in inches or mm mode. Much
more to do here, but this is the first step.
- New settings: auto cycle start, hard limit enable, homing direction
mask (which works the same as the stepper mask), homing pulloff
distance (or distance traveled from homed machine zero to prevent
accidental limit trip).
- Minor memory liberation and calculation speed ups.
2012-10-17 05:29:45 +02:00
|
|
|
float homing_pulloff;
|
2012-10-22 00:55:59 +02:00
|
|
|
uint8_t stepper_idle_lock_time; // If max value 255, steppers do not disable.
|
2012-11-01 16:37:27 +01:00
|
|
|
uint8_t decimal_places;
|
|
|
|
uint8_t n_arc_correction;
|
2011-01-25 22:51:37 +01:00
|
|
|
} settings_t;
|
|
|
|
extern settings_t settings;
|
2010-03-07 20:29:18 +01:00
|
|
|
|
|
|
|
// Initialize the configuration subsystem (load settings from EEPROM)
|
2011-02-05 00:45:41 +01:00
|
|
|
void settings_init();
|
2010-03-07 20:29:18 +01:00
|
|
|
|
2012-11-01 16:37:27 +01:00
|
|
|
// A helper method to set new settings from command line
|
|
|
|
uint8_t settings_store_global_setting(int parameter, float value);
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2012-11-01 16:37:27 +01:00
|
|
|
// Writes selected coordinate data to EEPROM
|
|
|
|
void settings_write_coord_data(uint8_t coord_select, float *coord_data);
|
2011-02-18 22:59:16 +01:00
|
|
|
|
2012-11-01 16:37:27 +01:00
|
|
|
// Reads selected coordinate data from EEPROM
|
|
|
|
uint8_t settings_read_coord_data(uint8_t coord_select, float *coord_data);
|
2010-03-07 20:29:18 +01:00
|
|
|
|
2012-10-13 21:11:43 +02:00
|
|
|
// int8_t settings_execute_startup();
|
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
#endif
|