2009-01-24 23:48:56 +00:00
|
|
|
/*
|
2011-02-04 23:55:37 +00:00
|
|
|
settings.h - eeprom configuration handling
|
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
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2011-02-04 23:45:41 +00:00
|
|
|
#ifndef settings_h
|
|
|
|
#define settings_h
|
2009-01-24 23:48:56 +00:00
|
|
|
|
2011-02-04 23:55:37 +00:00
|
|
|
|
2010-12-20 13:01:38 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include <inttypes.h>
|
2009-01-24 23:48:56 +00:00
|
|
|
|
2011-06-06 18:00:57 +00:00
|
|
|
#define GRBL_VERSION "0.7b"
|
2010-03-03 00:39:44 +00:00
|
|
|
|
2010-03-07 19:29:18 +00: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
|
2011-01-24 22:32:33 +00:00
|
|
|
#define SETTINGS_VERSION 2
|
2010-03-07 19:29:18 +00:00
|
|
|
|
|
|
|
// Current global settings (persisted in EEPROM from byte 1 onwards)
|
2011-01-25 21:51:37 +00:00
|
|
|
typedef struct {
|
2010-03-07 19:29:18 +00:00
|
|
|
double steps_per_mm[3];
|
|
|
|
uint8_t microsteps;
|
|
|
|
uint8_t pulse_microseconds;
|
|
|
|
double default_feed_rate;
|
|
|
|
double default_seek_rate;
|
|
|
|
uint8_t invert_mask;
|
|
|
|
double mm_per_arc_segment;
|
2011-01-14 11:10:18 +00:00
|
|
|
double acceleration;
|
2011-09-03 21:31:48 +00:00
|
|
|
double junction_deviation;
|
2011-01-25 21:51:37 +00:00
|
|
|
} settings_t;
|
|
|
|
extern settings_t settings;
|
2010-03-07 19:29:18 +00:00
|
|
|
|
|
|
|
// Initialize the configuration subsystem (load settings from EEPROM)
|
2011-02-04 23:45:41 +00:00
|
|
|
void settings_init();
|
2010-03-07 19:29:18 +00:00
|
|
|
|
|
|
|
// Print current settings
|
2011-02-05 00:00:41 +00:00
|
|
|
void settings_dump();
|
2009-01-24 23:48:56 +00:00
|
|
|
|
2011-02-18 21:59:16 +00:00
|
|
|
// Handle settings command
|
|
|
|
uint8_t settings_execute_line(char *line);
|
|
|
|
|
2010-03-07 19:29:18 +00:00
|
|
|
// A helper method to set new settings from command line
|
2011-02-05 00:00:41 +00:00
|
|
|
void settings_store_setting(int parameter, double value);
|
2010-03-07 19:29:18 +00:00
|
|
|
|
2009-01-24 23:48:56 +00:00
|
|
|
#endif
|