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
|
|
|
|
|
2013-12-31 06:02:05 +01:00
|
|
|
Copyright (c) 2011-2014 Sungeun K. Jeon
|
2011-01-14 16:45:18 +01:00
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
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
|
|
|
|
2014-01-11 04:22:10 +01:00
|
|
|
#include "system.h"
|
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
|
2014-01-02 20:12:35 +01:00
|
|
|
#define GRBL_VERSION "0.9c"
|
2014-01-11 04:22:10 +01:00
|
|
|
#define GRBL_VERSION_BUILD "20140110"
|
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
|
2014-01-11 04:22:10 +01:00
|
|
|
#define SETTINGS_VERSION 6
|
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)
|
2013-10-30 02:10:39 +01:00
|
|
|
#define BITFLAG_HOMING_ENABLE bit(4)
|
|
|
|
#define BITFLAG_SOFT_LIMIT_ENABLE bit(5)
|
2013-12-31 02:44:46 +01:00
|
|
|
#define BITFLAG_INVERT_LIMIT_PINS bit(6)
|
2010-03-07 20:29:18 +01:00
|
|
|
|
2012-11-02 02:48:55 +01:00
|
|
|
// Define EEPROM memory address location values for Grbl settings and parameters
|
|
|
|
// NOTE: The Atmega328p has 1KB EEPROM. The upper half is reserved for parameters and
|
|
|
|
// the startup script. The lower half contains the global settings and space for future
|
|
|
|
// developments.
|
2012-11-01 16:37:27 +01:00
|
|
|
#define EEPROM_ADDR_GLOBAL 1
|
|
|
|
#define EEPROM_ADDR_PARAMETERS 512
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
#define EEPROM_ADDR_STARTUP_BLOCK 768
|
2014-01-05 18:27:34 +01:00
|
|
|
#define EEPROM_ADDR_BUILD_INFO 992
|
2012-11-01 16:37:27 +01:00
|
|
|
|
|
|
|
// Define EEPROM address indexing for coordinate parameters
|
|
|
|
#define N_COORDINATE_SYSTEM 6 // Number of supported work coordinate systems (from index 1)
|
2012-11-02 02:48:55 +01:00
|
|
|
#define SETTING_INDEX_NCOORD N_COORDINATE_SYSTEM+1 // Total number of system stored (from index 0)
|
2012-11-01 16:37:27 +01:00
|
|
|
// 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
|
2012-11-02 02:48:55 +01:00
|
|
|
// #define SETTING_INDEX_G92 N_COORDINATE_SYSTEM+2 // Coordinate offset (G92.2,G92.3 not supported)
|
2012-11-01 16:37:27 +01:00
|
|
|
|
|
|
|
// Global persistent settings (Stored from byte EEPROM_ADDR_GLOBAL onwards)
|
2011-01-25 22:51:37 +01:00
|
|
|
typedef struct {
|
2012-12-14 16:27:02 +01:00
|
|
|
float steps_per_mm[N_AXIS];
|
2013-12-07 16:40:25 +01:00
|
|
|
float max_rate[N_AXIS];
|
|
|
|
float acceleration[N_AXIS];
|
|
|
|
float max_travel[N_AXIS];
|
2010-03-07 20:29:18 +01:00
|
|
|
uint8_t pulse_microseconds;
|
2012-10-08 23:57:58 +02:00
|
|
|
float default_feed_rate;
|
2013-12-31 02:44:46 +01:00
|
|
|
uint8_t step_invert_mask;
|
|
|
|
uint8_t dir_invert_mask;
|
2013-12-07 16:40:25 +01:00
|
|
|
uint8_t stepper_idle_lock_time; // If max value 255, steppers do not disable.
|
2012-10-08 23:57:58 +02:00
|
|
|
float junction_deviation;
|
2013-12-07 16:40:25 +01:00
|
|
|
float arc_tolerance;
|
|
|
|
uint8_t decimal_places;
|
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-11-02 02:48:55 +01:00
|
|
|
// uint8_t status_report_mask; // Mask to indicate desired report data.
|
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
|
|
|
|
New startup script setting. New dry run, check gcode switches. New system state variable. Lots of reorganizing.
(All v0.8 features installed. Still likely buggy, but now thourough
testing will need to start to squash them all. As soon as we're done,
this will be pushed to master and v0.9 development will be started.
Please report ANY issues to us so we can get this rolled out ASAP.)
- User startup script! A user can now save one (up to 5 as compile-time
option) block of g-code in EEPROM memory. This will be run everytime
Grbl resets. Mainly to be used as a way to set your preferences, like
G21, G54, etc.
- New dry run and check g-code switches. Dry run moves ALL motions at
rapids rate ignoring spindle, coolant, and dwell commands. For rapid
physical proofing of your code. The check g-code switch ignores all
motion and provides the user a way to check if there are any errors in
their program that Grbl may not like.
- Program restart! (sort of). Program restart is typically an advanced
feature that allows users to restart a program mid-stream. The check
g-code switch can perform this feature by enabling the switch at the
start of the program, and disabling it at the desired point with some
minimal changes.
- New system state variable. This state variable tracks all of the
different state processes that Grbl performs, i.e. cycle start, feed
hold, homing, etc. This is mainly for making managing of these task
easier and more clear.
- Position lost state variable. Only when homing is enabled, Grbl will
refuse to move until homing is completed and position is known. This is
mainly for safety. Otherwise, it will let users fend for themselves.
- Moved the default settings defines into config.h. The plan is to
eventually create a set of config.h's for particular as-built machines
to help users from doing it themselves.
- Moved around misc defines into .h files. And lots of other little
things.
2012-11-03 18:32:23 +01:00
|
|
|
// Stores the protocol line variable as a startup line in EEPROM
|
|
|
|
void settings_store_startup_line(uint8_t n, char *line);
|
|
|
|
|
|
|
|
// Reads an EEPROM startup line to the protocol line variable
|
|
|
|
uint8_t settings_read_startup_line(uint8_t n, char *line);
|
|
|
|
|
2014-01-05 18:27:34 +01:00
|
|
|
void settings_store_build_info(char *line);
|
|
|
|
|
|
|
|
uint8_t settings_read_build_info(char *line);
|
|
|
|
|
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
|
|
|
|
2009-01-25 00:48:56 +01:00
|
|
|
#endif
|