2010-03-07 19:29:18 +00:00
|
|
|
/*
|
2011-02-04 23:55:37 +00:00
|
|
|
settings.c - eeprom configuration handling
|
2010-03-07 19:29:18 +00:00
|
|
|
Part of Grbl
|
|
|
|
|
2011-01-14 15:45:18 +00:00
|
|
|
Copyright (c) 2009-2011 Simen Svale Skogsrud
|
2010-03-07 19:29:18 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include "nuts_bolts.h"
|
2011-02-04 23:45:41 +00:00
|
|
|
#include "settings.h"
|
2010-03-07 19:29:18 +00:00
|
|
|
#include "eeprom.h"
|
|
|
|
#include "wiring_serial.h"
|
2010-03-07 22:10:41 +00:00
|
|
|
#include <avr/pgmspace.h>
|
2010-03-07 19:29:18 +00:00
|
|
|
|
2011-01-25 21:51:37 +00:00
|
|
|
settings_t settings;
|
2011-01-14 23:27:08 +00:00
|
|
|
|
2011-01-31 22:04:08 +00:00
|
|
|
// Version 1 outdated settings record
|
|
|
|
typedef struct {
|
|
|
|
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;
|
|
|
|
} settings_v1_t;
|
|
|
|
|
2011-02-05 00:00:41 +00:00
|
|
|
void settings_reset() {
|
2011-02-06 22:27:04 +00:00
|
|
|
settings.steps_per_mm[X_AXIS] = DEFAULT_X_STEPS_PER_MM;
|
|
|
|
settings.steps_per_mm[Y_AXIS] = DEFAULT_Y_STEPS_PER_MM;
|
|
|
|
settings.steps_per_mm[Z_AXIS] = DEFAULT_Z_STEPS_PER_MM;
|
2011-02-04 23:55:37 +00:00
|
|
|
settings.pulse_microseconds = DEFAULT_STEP_PULSE_MICROSECONDS;
|
2010-03-07 19:29:18 +00:00
|
|
|
settings.default_feed_rate = DEFAULT_FEEDRATE;
|
2011-02-04 23:55:37 +00:00
|
|
|
settings.default_seek_rate = DEFAULT_RAPID_FEEDRATE;
|
2011-01-14 11:10:18 +00:00
|
|
|
settings.acceleration = DEFAULT_ACCELERATION;
|
2011-02-04 23:55:37 +00:00
|
|
|
settings.mm_per_arc_segment = DEFAULT_MM_PER_ARC_SEGMENT;
|
2011-01-31 22:04:08 +00:00
|
|
|
settings.invert_mask = DEFAULT_STEPPING_INVERT_MASK;
|
2011-01-14 23:27:08 +00:00
|
|
|
settings.max_jerk = DEFAULT_MAX_JERK;
|
2010-03-07 19:29:18 +00:00
|
|
|
}
|
|
|
|
|
2011-02-05 00:00:41 +00:00
|
|
|
void settings_dump() {
|
2011-02-06 22:27:04 +00:00
|
|
|
printPgmString(PSTR("$0 = ")); printFloat(settings.steps_per_mm[X_AXIS]);
|
|
|
|
printPgmString(PSTR(" (steps/mm x)\r\n$1 = ")); printFloat(settings.steps_per_mm[Y_AXIS]);
|
|
|
|
printPgmString(PSTR(" (steps/mm y)\r\n$2 = ")); printFloat(settings.steps_per_mm[Z_AXIS]);
|
2010-03-07 22:10:41 +00:00
|
|
|
printPgmString(PSTR(" (steps/mm z)\r\n$3 = ")); printInteger(settings.pulse_microseconds);
|
|
|
|
printPgmString(PSTR(" (microseconds step pulse)\r\n$4 = ")); printFloat(settings.default_feed_rate);
|
2011-01-14 11:10:18 +00:00
|
|
|
printPgmString(PSTR(" (mm/min default feed rate)\r\n$5 = ")); printFloat(settings.default_seek_rate);
|
|
|
|
printPgmString(PSTR(" (mm/min default seek rate)\r\n$6 = ")); printFloat(settings.mm_per_arc_segment);
|
2011-01-22 22:29:02 +00:00
|
|
|
printPgmString(PSTR(" (mm/arc segment)\r\n$7 = ")); printInteger(settings.invert_mask);
|
2010-03-07 22:10:41 +00:00
|
|
|
printPgmString(PSTR(" (step port invert mask. binary = ")); printIntegerInBase(settings.invert_mask, 2);
|
2011-01-22 22:29:02 +00:00
|
|
|
printPgmString(PSTR(")\r\n$8 = ")); printFloat(settings.acceleration);
|
|
|
|
printPgmString(PSTR(" (acceleration in mm/sec^2)\r\n$9 = ")); printFloat(settings.max_jerk);
|
2011-01-14 23:27:08 +00:00
|
|
|
printPgmString(PSTR(" (max instant cornering speed change in delta mm/min)"));
|
2010-12-20 13:01:38 +00:00
|
|
|
printPgmString(PSTR("\r\n'$x=value' to set parameter or just '$' to dump current settings\r\n"));
|
2010-03-07 19:29:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 22:04:08 +00:00
|
|
|
void write_settings() {
|
|
|
|
eeprom_put_char(0, SETTINGS_VERSION);
|
|
|
|
memcpy_to_eeprom_with_checksum(1, (char*)&settings, sizeof(settings_t));
|
|
|
|
}
|
|
|
|
|
2010-03-07 19:29:18 +00:00
|
|
|
int read_settings() {
|
|
|
|
// Check version-byte of eeprom
|
2011-01-24 22:32:33 +00:00
|
|
|
uint8_t version = eeprom_get_char(0);
|
2011-01-31 22:04:08 +00:00
|
|
|
|
|
|
|
if (version == SETTINGS_VERSION) {
|
|
|
|
// Read settings-record and check checksum
|
|
|
|
if (!(memcpy_from_eeprom_with_checksum((char*)&settings, 1, sizeof(settings_t)))) {
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
} else if (version == 1) {
|
|
|
|
// Migrate from old settings version
|
|
|
|
if (!(memcpy_from_eeprom_with_checksum((char*)&settings, 1, sizeof(settings_v1_t)))) {
|
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
settings.acceleration = DEFAULT_ACCELERATION;
|
|
|
|
settings.max_jerk = DEFAULT_MAX_JERK;
|
|
|
|
} else {
|
2010-03-07 19:29:18 +00:00
|
|
|
return(FALSE);
|
|
|
|
}
|
|
|
|
return(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// A helper method to set 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
|
|
|
switch(parameter) {
|
|
|
|
case 0: case 1: case 2:
|
|
|
|
settings.steps_per_mm[parameter] = value; break;
|
|
|
|
case 3: settings.pulse_microseconds = round(value); break;
|
|
|
|
case 4: settings.default_feed_rate = value; break;
|
|
|
|
case 5: settings.default_seek_rate = value; break;
|
2010-12-20 13:01:38 +00:00
|
|
|
case 6: settings.mm_per_arc_segment = value; break;
|
2011-01-22 22:29:02 +00:00
|
|
|
case 7: settings.invert_mask = trunc(value); break;
|
|
|
|
case 8: settings.acceleration = value; break;
|
|
|
|
case 9: settings.max_jerk = fabs(value); break;
|
2010-03-07 19:29:18 +00:00
|
|
|
default:
|
2011-01-14 11:10:18 +00:00
|
|
|
printPgmString(PSTR("Unknown parameter\r\n"));
|
|
|
|
return;
|
2010-03-07 19:29:18 +00:00
|
|
|
}
|
|
|
|
write_settings();
|
2010-03-07 22:10:41 +00:00
|
|
|
printPgmString(PSTR("Stored new setting\r\n"));
|
2010-03-07 19:29:18 +00:00
|
|
|
}
|
|
|
|
|
2011-01-31 22:04:08 +00:00
|
|
|
// Initialize the config subsystem
|
2011-02-04 23:45:41 +00:00
|
|
|
void settings_init() {
|
2010-03-07 19:29:18 +00:00
|
|
|
if(read_settings()) {
|
2010-03-07 22:10:41 +00:00
|
|
|
printPgmString(PSTR("'$' to dump current settings\r\n"));
|
2010-03-07 19:29:18 +00:00
|
|
|
} else {
|
2010-04-22 18:43:37 +00:00
|
|
|
printPgmString(PSTR("Warning: Failed to read EEPROM settings. Using defaults.\r\n"));
|
2011-02-05 00:00:41 +00:00
|
|
|
settings_reset();
|
2010-03-07 19:29:18 +00:00
|
|
|
write_settings();
|
2011-02-05 00:00:41 +00:00
|
|
|
settings_dump();
|
2010-03-07 19:29:18 +00:00
|
|
|
}
|
|
|
|
}
|