2015-01-28 10:08:48 +01:00
|
|
|
/**
|
|
|
|
* ConfigurationStore.cpp
|
|
|
|
*
|
|
|
|
* Configuration and EEPROM storage
|
|
|
|
*
|
2015-03-11 17:19:02 +01:00
|
|
|
* V16 EEPROM Layout:
|
2015-01-28 10:08:48 +01:00
|
|
|
*
|
|
|
|
* ver
|
|
|
|
* axis_steps_per_unit (x4)
|
|
|
|
* max_feedrate (x4)
|
|
|
|
* max_acceleration_units_per_sq_second (x4)
|
|
|
|
* acceleration
|
|
|
|
* retract_acceleration
|
2015-03-26 04:36:24 +01:00
|
|
|
* travel_acceleration
|
2015-01-28 10:08:48 +01:00
|
|
|
* minimumfeedrate
|
|
|
|
* mintravelfeedrate
|
|
|
|
* minsegmenttime
|
|
|
|
* max_xy_jerk
|
|
|
|
* max_z_jerk
|
|
|
|
* max_e_jerk
|
2015-03-22 00:30:02 +01:00
|
|
|
* home_offset (x3)
|
2015-01-28 10:08:48 +01:00
|
|
|
*
|
2015-03-15 23:18:11 +01:00
|
|
|
* Mesh bed leveling:
|
|
|
|
* active
|
2015-03-20 11:46:47 +01:00
|
|
|
* mesh_num_x
|
|
|
|
* mesh_num_y
|
2015-03-15 23:18:11 +01:00
|
|
|
* z_values[][]
|
2015-03-26 05:14:00 +01:00
|
|
|
* zprobe_zoffset
|
2015-03-15 23:18:11 +01:00
|
|
|
*
|
2015-01-28 10:08:48 +01:00
|
|
|
* DELTA:
|
|
|
|
* endstop_adj (x3)
|
|
|
|
* delta_radius
|
|
|
|
* delta_diagonal_rod
|
|
|
|
* delta_segments_per_second
|
|
|
|
*
|
|
|
|
* ULTIPANEL:
|
|
|
|
* plaPreheatHotendTemp
|
|
|
|
* plaPreheatHPBTemp
|
|
|
|
* plaPreheatFanSpeed
|
|
|
|
* absPreheatHotendTemp
|
|
|
|
* absPreheatHPBTemp
|
|
|
|
* absPreheatFanSpeed
|
|
|
|
*
|
|
|
|
* PIDTEMP:
|
|
|
|
* Kp[0], Ki[0], Kd[0], Kc[0]
|
|
|
|
* Kp[1], Ki[1], Kd[1], Kc[1]
|
|
|
|
* Kp[2], Ki[2], Kd[2], Kc[2]
|
|
|
|
* Kp[3], Ki[3], Kd[3], Kc[3]
|
|
|
|
*
|
|
|
|
* DOGLCD:
|
|
|
|
* lcd_contrast
|
|
|
|
*
|
|
|
|
* SCARA:
|
|
|
|
* axis_scaling (x3)
|
|
|
|
*
|
|
|
|
* FWRETRACT:
|
|
|
|
* autoretract_enabled
|
|
|
|
* retract_length
|
|
|
|
* retract_length_swap
|
|
|
|
* retract_feedrate
|
|
|
|
* retract_zlift
|
|
|
|
* retract_recover_length
|
|
|
|
* retract_recover_length_swap
|
|
|
|
* retract_recover_feedrate
|
|
|
|
*
|
|
|
|
* volumetric_enabled
|
|
|
|
*
|
|
|
|
* filament_size (x4)
|
|
|
|
*
|
2015-03-24 18:06:44 +01:00
|
|
|
* Z_DUAL_ENDSTOPS
|
|
|
|
* z_endstop_adj
|
|
|
|
*
|
2015-01-28 10:08:48 +01:00
|
|
|
*/
|
2012-11-07 23:16:43 +01:00
|
|
|
#include "Marlin.h"
|
2015-01-29 06:19:51 +01:00
|
|
|
#include "language.h"
|
2012-11-07 23:16:43 +01:00
|
|
|
#include "planner.h"
|
|
|
|
#include "temperature.h"
|
|
|
|
#include "ultralcd.h"
|
|
|
|
#include "ConfigurationStore.h"
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
|
2015-03-15 23:18:11 +01:00
|
|
|
#if defined(MESH_BED_LEVELING)
|
|
|
|
#include "mesh_bed_leveling.h"
|
|
|
|
#endif // MESH_BED_LEVELING
|
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
void _EEPROM_writeData(int &pos, uint8_t* value, uint8_t size) {
|
2015-01-29 06:19:51 +01:00
|
|
|
uint8_t c;
|
|
|
|
while(size--) {
|
2015-01-28 10:08:48 +01:00
|
|
|
eeprom_write_byte((unsigned char*)pos, *value);
|
2015-01-29 07:27:15 +01:00
|
|
|
c = eeprom_read_byte((unsigned char*)pos);
|
|
|
|
if (c != *value) {
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOLNPGM(MSG_ERR_EEPROM_WRITE);
|
|
|
|
}
|
2015-01-28 10:08:48 +01:00
|
|
|
pos++;
|
|
|
|
value++;
|
2015-01-29 06:19:51 +01:00
|
|
|
};
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
}
|
2015-01-28 10:08:48 +01:00
|
|
|
void _EEPROM_readData(int &pos, uint8_t* value, uint8_t size) {
|
|
|
|
do {
|
|
|
|
*value = eeprom_read_byte((unsigned char*)pos);
|
|
|
|
pos++;
|
|
|
|
value++;
|
|
|
|
} while (--size);
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
}
|
2015-01-28 10:08:48 +01:00
|
|
|
#define EEPROM_WRITE_VAR(pos, value) _EEPROM_writeData(pos, (uint8_t*)&value, sizeof(value))
|
2012-11-07 23:16:43 +01:00
|
|
|
#define EEPROM_READ_VAR(pos, value) _EEPROM_readData(pos, (uint8_t*)&value, sizeof(value))
|
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
//======================================================================================
|
2012-11-07 23:16:43 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
#define DUMMY_PID_VALUE 3000.0f
|
2012-11-07 23:16:43 +01:00
|
|
|
|
|
|
|
#define EEPROM_OFFSET 100
|
|
|
|
|
|
|
|
|
|
|
|
// IMPORTANT: Whenever there are changes made to the variables stored in EEPROM
|
|
|
|
// in the functions below, also increment the version number. This makes sure that
|
|
|
|
// the default values are used whenever there is a change to the data, to prevent
|
|
|
|
// wrong data being written to the variables.
|
|
|
|
// ALSO: always make sure the variables in the Store and retrieve sections are in the same order.
|
2014-06-23 17:09:57 +02:00
|
|
|
|
2015-03-26 05:14:00 +01:00
|
|
|
#define EEPROM_VERSION "V18"
|
2012-11-07 23:16:43 +01:00
|
|
|
|
|
|
|
#ifdef EEPROM_SETTINGS
|
2015-01-28 10:08:48 +01:00
|
|
|
|
|
|
|
void Config_StoreSettings() {
|
|
|
|
float dummy = 0.0f;
|
|
|
|
char ver[4] = "000";
|
|
|
|
int i = EEPROM_OFFSET;
|
|
|
|
EEPROM_WRITE_VAR(i, ver); // invalidate data first
|
|
|
|
EEPROM_WRITE_VAR(i, axis_steps_per_unit);
|
|
|
|
EEPROM_WRITE_VAR(i, max_feedrate);
|
|
|
|
EEPROM_WRITE_VAR(i, max_acceleration_units_per_sq_second);
|
|
|
|
EEPROM_WRITE_VAR(i, acceleration);
|
|
|
|
EEPROM_WRITE_VAR(i, retract_acceleration);
|
2015-03-11 17:19:02 +01:00
|
|
|
EEPROM_WRITE_VAR(i, travel_acceleration);
|
2015-01-28 10:08:48 +01:00
|
|
|
EEPROM_WRITE_VAR(i, minimumfeedrate);
|
|
|
|
EEPROM_WRITE_VAR(i, mintravelfeedrate);
|
|
|
|
EEPROM_WRITE_VAR(i, minsegmenttime);
|
|
|
|
EEPROM_WRITE_VAR(i, max_xy_jerk);
|
|
|
|
EEPROM_WRITE_VAR(i, max_z_jerk);
|
|
|
|
EEPROM_WRITE_VAR(i, max_e_jerk);
|
2015-03-22 00:30:02 +01:00
|
|
|
EEPROM_WRITE_VAR(i, home_offset);
|
2015-01-28 10:08:48 +01:00
|
|
|
|
2015-03-18 21:00:31 +01:00
|
|
|
uint8_t mesh_num_x = 3;
|
|
|
|
uint8_t mesh_num_y = 3;
|
2015-03-26 05:14:00 +01:00
|
|
|
#ifdef MESH_BED_LEVELING
|
2015-03-18 21:00:31 +01:00
|
|
|
// Compile time test that sizeof(mbl.z_values) is as expected
|
|
|
|
typedef char c_assert[(sizeof(mbl.z_values) == MESH_NUM_X_POINTS*MESH_NUM_Y_POINTS*sizeof(dummy)) ? 1 : -1];
|
|
|
|
mesh_num_x = MESH_NUM_X_POINTS;
|
|
|
|
mesh_num_y = MESH_NUM_Y_POINTS;
|
2015-03-15 23:18:11 +01:00
|
|
|
EEPROM_WRITE_VAR(i, mbl.active);
|
2015-03-18 21:00:31 +01:00
|
|
|
EEPROM_WRITE_VAR(i, mesh_num_x);
|
|
|
|
EEPROM_WRITE_VAR(i, mesh_num_y);
|
2015-03-15 23:18:11 +01:00
|
|
|
EEPROM_WRITE_VAR(i, mbl.z_values);
|
2015-03-18 21:00:31 +01:00
|
|
|
#else
|
|
|
|
uint8_t dummy_uint8 = 0;
|
|
|
|
EEPROM_WRITE_VAR(i, dummy_uint8);
|
|
|
|
EEPROM_WRITE_VAR(i, mesh_num_x);
|
|
|
|
EEPROM_WRITE_VAR(i, mesh_num_y);
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (int q=0; q<mesh_num_x*mesh_num_y; q++) {
|
|
|
|
EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
}
|
2015-03-26 05:14:00 +01:00
|
|
|
#endif // MESH_BED_LEVELING
|
|
|
|
|
|
|
|
#ifndef ENABLE_AUTO_BED_LEVELING
|
|
|
|
float zprobe_zoffset = 0;
|
|
|
|
#endif
|
|
|
|
EEPROM_WRITE_VAR(i, zprobe_zoffset);
|
2015-03-15 23:18:11 +01:00
|
|
|
|
2013-08-28 01:15:20 +02:00
|
|
|
#ifdef DELTA
|
2015-01-28 10:08:48 +01:00
|
|
|
EEPROM_WRITE_VAR(i, endstop_adj); // 3 floats
|
|
|
|
EEPROM_WRITE_VAR(i, delta_radius); // 1 float
|
|
|
|
EEPROM_WRITE_VAR(i, delta_diagonal_rod); // 1 float
|
|
|
|
EEPROM_WRITE_VAR(i, delta_segments_per_second); // 1 float
|
2015-03-24 18:06:44 +01:00
|
|
|
#elif defined(Z_DUAL_ENDSTOPS)
|
|
|
|
EEPROM_WRITE_VAR(i, z_endstop_adj); // 1 floats
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (int q=5; q--;) EEPROM_WRITE_VAR(i, dummy);
|
2015-01-28 10:08:48 +01:00
|
|
|
#else
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (int q=6; q--;) EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
|
2012-11-10 14:37:01 +01:00
|
|
|
#ifndef ULTIPANEL
|
2015-01-28 10:08:48 +01:00
|
|
|
int plaPreheatHotendTemp = PLA_PREHEAT_HOTEND_TEMP, plaPreheatHPBTemp = PLA_PREHEAT_HPB_TEMP, plaPreheatFanSpeed = PLA_PREHEAT_FAN_SPEED,
|
|
|
|
absPreheatHotendTemp = ABS_PREHEAT_HOTEND_TEMP, absPreheatHPBTemp = ABS_PREHEAT_HPB_TEMP, absPreheatFanSpeed = ABS_PREHEAT_FAN_SPEED;
|
|
|
|
#endif // !ULTIPANEL
|
|
|
|
|
|
|
|
EEPROM_WRITE_VAR(i, plaPreheatHotendTemp);
|
|
|
|
EEPROM_WRITE_VAR(i, plaPreheatHPBTemp);
|
|
|
|
EEPROM_WRITE_VAR(i, plaPreheatFanSpeed);
|
|
|
|
EEPROM_WRITE_VAR(i, absPreheatHotendTemp);
|
|
|
|
EEPROM_WRITE_VAR(i, absPreheatHPBTemp);
|
|
|
|
EEPROM_WRITE_VAR(i, absPreheatFanSpeed);
|
2015-03-26 05:14:00 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
|
|
|
|
for (int e = 0; e < 4; e++) {
|
|
|
|
|
|
|
|
#ifdef PIDTEMP
|
|
|
|
if (e < EXTRUDERS) {
|
|
|
|
EEPROM_WRITE_VAR(i, PID_PARAM(Kp, e));
|
|
|
|
EEPROM_WRITE_VAR(i, PID_PARAM(Ki, e));
|
|
|
|
EEPROM_WRITE_VAR(i, PID_PARAM(Kd, e));
|
Independent PID parameters for each extruder
* Variables Kp, Ki, Kd, Kc now arrays of size EXTRUDERS
* M301 gains (optional, default=0) E parameter to define which
extruder's settings to modify. Tested, works with Repetier Host's EEPROM
config window, albeit only reads/updates settings for E0.
* All Kp, Ki, Kd, Kc parameters saved in EEPROM (version now v14), up to
3 extruders supported (same as Marlin in general)
2015-01-10 04:46:08 +01:00
|
|
|
#ifdef PID_ADD_EXTRUSION_RATE
|
2015-01-28 10:08:48 +01:00
|
|
|
EEPROM_WRITE_VAR(i, PID_PARAM(Kc, e));
|
|
|
|
#else
|
|
|
|
dummy = 1.0f; // 1.0 = default kc
|
2015-02-06 23:43:58 +01:00
|
|
|
EEPROM_WRITE_VAR(i, dummy);
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#else // !PIDTEMP
|
|
|
|
{
|
|
|
|
#endif // !PIDTEMP
|
|
|
|
|
2015-01-29 05:48:32 +01:00
|
|
|
dummy = DUMMY_PID_VALUE;
|
|
|
|
EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (int q = 3; q--;) EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
}
|
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
} // Extruders Loop
|
|
|
|
|
2013-07-14 10:28:26 +02:00
|
|
|
#ifndef DOGLCD
|
|
|
|
int lcd_contrast = 32;
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif
|
|
|
|
EEPROM_WRITE_VAR(i, lcd_contrast);
|
|
|
|
|
2014-06-23 17:09:57 +02:00
|
|
|
#ifdef SCARA
|
2015-01-28 10:08:48 +01:00
|
|
|
EEPROM_WRITE_VAR(i, axis_scaling); // 3 floats
|
|
|
|
#else
|
|
|
|
dummy = 1.0f;
|
|
|
|
EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
|
2014-12-29 02:43:14 +01:00
|
|
|
#ifdef FWRETRACT
|
2015-01-28 10:08:48 +01:00
|
|
|
EEPROM_WRITE_VAR(i, autoretract_enabled);
|
|
|
|
EEPROM_WRITE_VAR(i, retract_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
EEPROM_WRITE_VAR(i, retract_length_swap);
|
|
|
|
#else
|
|
|
|
dummy = 0.0f;
|
|
|
|
EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
EEPROM_WRITE_VAR(i, retract_feedrate);
|
|
|
|
EEPROM_WRITE_VAR(i, retract_zlift);
|
|
|
|
EEPROM_WRITE_VAR(i, retract_recover_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
EEPROM_WRITE_VAR(i, retract_recover_length_swap);
|
|
|
|
#else
|
|
|
|
dummy = 0.0f;
|
|
|
|
EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
EEPROM_WRITE_VAR(i, retract_recover_feedrate);
|
|
|
|
#endif // FWRETRACT
|
2014-12-29 02:43:14 +01:00
|
|
|
|
|
|
|
EEPROM_WRITE_VAR(i, volumetric_enabled);
|
2015-01-28 10:08:48 +01:00
|
|
|
|
|
|
|
// Save filament sizes
|
|
|
|
for (int q = 0; q < 4; q++) {
|
|
|
|
if (q < EXTRUDERS) dummy = filament_size[q];
|
|
|
|
EEPROM_WRITE_VAR(i, dummy);
|
|
|
|
}
|
|
|
|
|
|
|
|
char ver2[4] = EEPROM_VERSION;
|
|
|
|
int j = EEPROM_OFFSET;
|
|
|
|
EEPROM_WRITE_VAR(j, ver2); // validate data
|
|
|
|
|
|
|
|
// Report storage size
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHOPAIR("Settings Stored (", (unsigned long)i);
|
|
|
|
SERIAL_ECHOLNPGM(" bytes)");
|
2012-11-07 23:16:43 +01:00
|
|
|
}
|
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
void Config_RetrieveSettings() {
|
2012-11-07 23:16:43 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
int i = EEPROM_OFFSET;
|
|
|
|
char stored_ver[4];
|
|
|
|
char ver[4] = EEPROM_VERSION;
|
|
|
|
EEPROM_READ_VAR(i, stored_ver); //read stored version
|
|
|
|
// SERIAL_ECHOLN("Version: [" << ver << "] Stored version: [" << stored_ver << "]");
|
|
|
|
|
|
|
|
if (strncmp(ver, stored_ver, 3) != 0) {
|
|
|
|
Config_ResetDefault();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
float dummy = 0;
|
|
|
|
|
|
|
|
// version number match
|
|
|
|
EEPROM_READ_VAR(i, axis_steps_per_unit);
|
|
|
|
EEPROM_READ_VAR(i, max_feedrate);
|
|
|
|
EEPROM_READ_VAR(i, max_acceleration_units_per_sq_second);
|
|
|
|
|
2015-03-15 23:18:11 +01:00
|
|
|
// steps per sq second need to be updated to agree with the units per sq second (as they are what is used in the planner)
|
2015-01-28 10:08:48 +01:00
|
|
|
reset_acceleration_rates();
|
|
|
|
|
|
|
|
EEPROM_READ_VAR(i, acceleration);
|
|
|
|
EEPROM_READ_VAR(i, retract_acceleration);
|
2015-03-11 17:19:02 +01:00
|
|
|
EEPROM_READ_VAR(i, travel_acceleration);
|
2015-01-28 10:08:48 +01:00
|
|
|
EEPROM_READ_VAR(i, minimumfeedrate);
|
|
|
|
EEPROM_READ_VAR(i, mintravelfeedrate);
|
|
|
|
EEPROM_READ_VAR(i, minsegmenttime);
|
|
|
|
EEPROM_READ_VAR(i, max_xy_jerk);
|
|
|
|
EEPROM_READ_VAR(i, max_z_jerk);
|
|
|
|
EEPROM_READ_VAR(i, max_e_jerk);
|
2015-03-22 00:30:02 +01:00
|
|
|
EEPROM_READ_VAR(i, home_offset);
|
2015-01-28 10:08:48 +01:00
|
|
|
|
2015-03-18 21:00:31 +01:00
|
|
|
uint8_t mesh_num_x = 0;
|
|
|
|
uint8_t mesh_num_y = 0;
|
2015-03-15 23:18:11 +01:00
|
|
|
#if defined(MESH_BED_LEVELING)
|
|
|
|
EEPROM_READ_VAR(i, mbl.active);
|
2015-03-18 21:00:31 +01:00
|
|
|
EEPROM_READ_VAR(i, mesh_num_x);
|
|
|
|
EEPROM_READ_VAR(i, mesh_num_y);
|
|
|
|
if (mesh_num_x != MESH_NUM_X_POINTS ||
|
|
|
|
mesh_num_y != MESH_NUM_Y_POINTS) {
|
|
|
|
mbl.reset();
|
|
|
|
for (int q=0; q<mesh_num_x*mesh_num_y; q++) {
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
EEPROM_READ_VAR(i, mbl.z_values);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
uint8_t dummy_uint8 = 0;
|
|
|
|
EEPROM_READ_VAR(i, dummy_uint8);
|
|
|
|
EEPROM_READ_VAR(i, mesh_num_x);
|
|
|
|
EEPROM_READ_VAR(i, mesh_num_y);
|
|
|
|
for (int q=0; q<mesh_num_x*mesh_num_y; q++) {
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
}
|
2015-03-15 23:18:11 +01:00
|
|
|
#endif // MESH_BED_LEVELING
|
|
|
|
|
2015-03-26 05:14:00 +01:00
|
|
|
#ifndef ENABLE_AUTO_BED_LEVELING
|
|
|
|
float zprobe_zoffset = 0;
|
|
|
|
#endif
|
|
|
|
EEPROM_READ_VAR(i, zprobe_zoffset);
|
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
#ifdef DELTA
|
|
|
|
EEPROM_READ_VAR(i, endstop_adj); // 3 floats
|
|
|
|
EEPROM_READ_VAR(i, delta_radius); // 1 float
|
|
|
|
EEPROM_READ_VAR(i, delta_diagonal_rod); // 1 float
|
|
|
|
EEPROM_READ_VAR(i, delta_segments_per_second); // 1 float
|
2015-03-24 18:06:44 +01:00
|
|
|
#elif defined(Z_DUAL_ENDSTOPS)
|
|
|
|
EEPROM_READ_VAR(i, z_endstop_adj);
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (int q=5; q--;) EEPROM_READ_VAR(i, dummy);
|
2015-01-28 10:08:48 +01:00
|
|
|
#else
|
2015-03-24 18:06:44 +01:00
|
|
|
dummy = 0.0f;
|
2015-01-28 10:08:48 +01:00
|
|
|
for (int q=6; q--;) EEPROM_READ_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ULTIPANEL
|
|
|
|
int plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed,
|
|
|
|
absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
EEPROM_READ_VAR(i, plaPreheatHotendTemp);
|
|
|
|
EEPROM_READ_VAR(i, plaPreheatHPBTemp);
|
|
|
|
EEPROM_READ_VAR(i, plaPreheatFanSpeed);
|
|
|
|
EEPROM_READ_VAR(i, absPreheatHotendTemp);
|
|
|
|
EEPROM_READ_VAR(i, absPreheatHPBTemp);
|
|
|
|
EEPROM_READ_VAR(i, absPreheatFanSpeed);
|
|
|
|
|
|
|
|
#ifdef PIDTEMP
|
|
|
|
for (int e = 0; e < 4; e++) { // 4 = max extruders currently supported by Marlin
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
if (e < EXTRUDERS && dummy != DUMMY_PID_VALUE) {
|
|
|
|
// do not need to scale PID values as the values in EEPROM are already scaled
|
|
|
|
PID_PARAM(Kp, e) = dummy;
|
|
|
|
EEPROM_READ_VAR(i, PID_PARAM(Ki, e));
|
|
|
|
EEPROM_READ_VAR(i, PID_PARAM(Kd, e));
|
|
|
|
#ifdef PID_ADD_EXTRUSION_RATE
|
|
|
|
EEPROM_READ_VAR(i, PID_PARAM(Kc, e));
|
|
|
|
#else
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
2015-01-29 05:48:32 +01:00
|
|
|
for (int q=3; q--;) EEPROM_READ_VAR(i, dummy); // Ki, Kd, Kc
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else // !PIDTEMP
|
2015-01-29 05:48:32 +01:00
|
|
|
// 4 x 4 = 16 slots for PID parameters
|
|
|
|
for (int q=16; q--;) EEPROM_READ_VAR(i, dummy); // 4x Kp, Ki, Kd, Kc
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif // !PIDTEMP
|
|
|
|
|
|
|
|
#ifndef DOGLCD
|
|
|
|
int lcd_contrast;
|
|
|
|
#endif
|
|
|
|
EEPROM_READ_VAR(i, lcd_contrast);
|
|
|
|
|
|
|
|
#ifdef SCARA
|
|
|
|
EEPROM_READ_VAR(i, axis_scaling); // 3 floats
|
|
|
|
#else
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FWRETRACT
|
|
|
|
EEPROM_READ_VAR(i, autoretract_enabled);
|
|
|
|
EEPROM_READ_VAR(i, retract_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
EEPROM_READ_VAR(i, retract_length_swap);
|
|
|
|
#else
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
EEPROM_READ_VAR(i, retract_feedrate);
|
|
|
|
EEPROM_READ_VAR(i, retract_zlift);
|
|
|
|
EEPROM_READ_VAR(i, retract_recover_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
EEPROM_READ_VAR(i, retract_recover_length_swap);
|
|
|
|
#else
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
#endif
|
|
|
|
EEPROM_READ_VAR(i, retract_recover_feedrate);
|
|
|
|
#endif // FWRETRACT
|
|
|
|
|
|
|
|
EEPROM_READ_VAR(i, volumetric_enabled);
|
|
|
|
|
|
|
|
for (int q = 0; q < 4; q++) {
|
|
|
|
EEPROM_READ_VAR(i, dummy);
|
|
|
|
if (q < EXTRUDERS) filament_size[q] = dummy;
|
|
|
|
}
|
|
|
|
|
|
|
|
calculate_volumetric_multipliers();
|
|
|
|
// Call updatePID (similar to when we have processed M301)
|
|
|
|
updatePID();
|
|
|
|
|
|
|
|
// Report settings retrieved and length
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO(ver);
|
|
|
|
SERIAL_ECHOPAIR(" stored settings retrieved (", (unsigned long)i);
|
|
|
|
SERIAL_ECHOLNPGM(" bytes)");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef EEPROM_CHITCHAT
|
|
|
|
Config_PrintSettings();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // EEPROM_SETTINGS
|
|
|
|
|
|
|
|
void Config_ResetDefault() {
|
|
|
|
float tmp1[] = DEFAULT_AXIS_STEPS_PER_UNIT;
|
|
|
|
float tmp2[] = DEFAULT_MAX_FEEDRATE;
|
|
|
|
long tmp3[] = DEFAULT_MAX_ACCELERATION;
|
2015-03-28 04:29:05 +01:00
|
|
|
for (uint16_t i = 0; i < NUM_AXIS; i++) {
|
2015-01-28 10:08:48 +01:00
|
|
|
axis_steps_per_unit[i] = tmp1[i];
|
|
|
|
max_feedrate[i] = tmp2[i];
|
|
|
|
max_acceleration_units_per_sq_second[i] = tmp3[i];
|
|
|
|
#ifdef SCARA
|
|
|
|
if (i < sizeof(axis_scaling) / sizeof(*axis_scaling))
|
|
|
|
axis_scaling[i] = 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// steps per sq second need to be updated to agree with the units per sq second
|
|
|
|
reset_acceleration_rates();
|
|
|
|
|
|
|
|
acceleration = DEFAULT_ACCELERATION;
|
|
|
|
retract_acceleration = DEFAULT_RETRACT_ACCELERATION;
|
2015-03-11 17:19:02 +01:00
|
|
|
travel_acceleration = DEFAULT_TRAVEL_ACCELERATION;
|
2015-01-28 10:08:48 +01:00
|
|
|
minimumfeedrate = DEFAULT_MINIMUMFEEDRATE;
|
|
|
|
minsegmenttime = DEFAULT_MINSEGMENTTIME;
|
|
|
|
mintravelfeedrate = DEFAULT_MINTRAVELFEEDRATE;
|
|
|
|
max_xy_jerk = DEFAULT_XYJERK;
|
|
|
|
max_z_jerk = DEFAULT_ZJERK;
|
|
|
|
max_e_jerk = DEFAULT_EJERK;
|
2015-03-22 00:30:02 +01:00
|
|
|
home_offset[X_AXIS] = home_offset[Y_AXIS] = home_offset[Z_AXIS] = 0;
|
2015-01-28 10:08:48 +01:00
|
|
|
|
2015-03-26 07:06:33 +01:00
|
|
|
#ifdef MESH_BED_LEVELING
|
2015-03-15 23:18:11 +01:00
|
|
|
mbl.active = 0;
|
2015-03-26 07:06:33 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_AUTO_BED_LEVELING
|
|
|
|
zprobe_zoffset = -Z_PROBE_OFFSET_FROM_EXTRUDER;
|
|
|
|
#endif
|
2015-03-15 23:18:11 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
#ifdef DELTA
|
|
|
|
endstop_adj[X_AXIS] = endstop_adj[Y_AXIS] = endstop_adj[Z_AXIS] = 0;
|
|
|
|
delta_radius = DELTA_RADIUS;
|
|
|
|
delta_diagonal_rod = DELTA_DIAGONAL_ROD;
|
|
|
|
delta_segments_per_second = DELTA_SEGMENTS_PER_SECOND;
|
|
|
|
recalc_delta_settings(delta_radius, delta_diagonal_rod);
|
2015-03-24 18:06:44 +01:00
|
|
|
#elif defined(Z_DUAL_ENDSTOPS)
|
|
|
|
z_endstop_adj = 0;
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ULTIPANEL
|
|
|
|
plaPreheatHotendTemp = PLA_PREHEAT_HOTEND_TEMP;
|
|
|
|
plaPreheatHPBTemp = PLA_PREHEAT_HPB_TEMP;
|
|
|
|
plaPreheatFanSpeed = PLA_PREHEAT_FAN_SPEED;
|
|
|
|
absPreheatHotendTemp = ABS_PREHEAT_HOTEND_TEMP;
|
|
|
|
absPreheatHPBTemp = ABS_PREHEAT_HPB_TEMP;
|
|
|
|
absPreheatFanSpeed = ABS_PREHEAT_FAN_SPEED;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DOGLCD
|
|
|
|
lcd_contrast = DEFAULT_LCD_CONTRAST;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PIDTEMP
|
|
|
|
#ifdef PID_PARAMS_PER_EXTRUDER
|
|
|
|
for (int e = 0; e < EXTRUDERS; e++)
|
|
|
|
#else
|
|
|
|
int e = 0; // only need to write once
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
PID_PARAM(Kp, e) = DEFAULT_Kp;
|
|
|
|
PID_PARAM(Ki, e) = scalePID_i(DEFAULT_Ki);
|
|
|
|
PID_PARAM(Kd, e) = scalePID_d(DEFAULT_Kd);
|
|
|
|
#ifdef PID_ADD_EXTRUSION_RATE
|
|
|
|
PID_PARAM(Kc, e) = DEFAULT_Kc;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
// call updatePID (similar to when we have processed M301)
|
|
|
|
updatePID();
|
|
|
|
#endif // PIDTEMP
|
|
|
|
|
|
|
|
#ifdef FWRETRACT
|
|
|
|
autoretract_enabled = false;
|
|
|
|
retract_length = RETRACT_LENGTH;
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
retract_length_swap = RETRACT_LENGTH_SWAP;
|
|
|
|
#endif
|
|
|
|
retract_feedrate = RETRACT_FEEDRATE;
|
|
|
|
retract_zlift = RETRACT_ZLIFT;
|
|
|
|
retract_recover_length = RETRACT_RECOVER_LENGTH;
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
retract_recover_length_swap = RETRACT_RECOVER_LENGTH_SWAP;
|
|
|
|
#endif
|
|
|
|
retract_recover_feedrate = RETRACT_RECOVER_FEEDRATE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
volumetric_enabled = false;
|
|
|
|
filament_size[0] = DEFAULT_NOMINAL_FILAMENT_DIA;
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
filament_size[1] = DEFAULT_NOMINAL_FILAMENT_DIA;
|
|
|
|
#if EXTRUDERS > 2
|
|
|
|
filament_size[2] = DEFAULT_NOMINAL_FILAMENT_DIA;
|
|
|
|
#if EXTRUDERS > 3
|
|
|
|
filament_size[3] = DEFAULT_NOMINAL_FILAMENT_DIA;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
calculate_volumetric_multipliers();
|
|
|
|
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOLNPGM("Hardcoded Default Settings Loaded");
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef DISABLE_M503
|
|
|
|
|
|
|
|
void Config_PrintSettings(bool forReplay) {
|
|
|
|
// Always have this function, even with EEPROM_SETTINGS disabled, the current values will be shown
|
|
|
|
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
|
|
|
|
if (!forReplay) {
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHOLNPGM("Steps per unit:");
|
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M92 X", axis_steps_per_unit[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", axis_steps_per_unit[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", axis_steps_per_unit[Z_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" E", axis_steps_per_unit[E_AXIS]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
|
|
|
|
#ifdef SCARA
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Scaling factors:");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M365 X", axis_scaling[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", axis_scaling[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", axis_scaling[Z_AXIS]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2014-06-23 17:09:57 +02:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif // SCARA
|
|
|
|
|
|
|
|
if (!forReplay) {
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHOLNPGM("Maximum feedrates (mm/s):");
|
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M203 X", max_feedrate[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", max_feedrate[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", max_feedrate[Z_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" E", max_feedrate[E_AXIS]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO_START;
|
|
|
|
if (!forReplay) {
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHOLNPGM("Maximum Acceleration (mm/s2):");
|
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M201 X", max_acceleration_units_per_sq_second[X_AXIS] );
|
|
|
|
SERIAL_ECHOPAIR(" Y", max_acceleration_units_per_sq_second[Y_AXIS] );
|
|
|
|
SERIAL_ECHOPAIR(" Z", max_acceleration_units_per_sq_second[Z_AXIS] );
|
|
|
|
SERIAL_ECHOPAIR(" E", max_acceleration_units_per_sq_second[E_AXIS]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO_START;
|
|
|
|
if (!forReplay) {
|
2015-03-11 17:19:02 +01:00
|
|
|
SERIAL_ECHOLNPGM("Accelerations: P=printing, R=retract and T=travel");
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
2015-03-11 17:19:02 +01:00
|
|
|
SERIAL_ECHOPAIR(" M204 P", acceleration );
|
|
|
|
SERIAL_ECHOPAIR(" R", retract_acceleration);
|
|
|
|
SERIAL_ECHOPAIR(" T", travel_acceleration);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO_START;
|
|
|
|
if (!forReplay) {
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
SERIAL_ECHOLNPGM("Advanced variables: S=Min feedrate (mm/s), T=Min travel feedrate (mm/s), B=minimum segment time (ms), X=maximum XY jerk (mm/s), Z=maximum Z jerk (mm/s), E=maximum E jerk (mm/s)");
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M205 S", minimumfeedrate );
|
|
|
|
SERIAL_ECHOPAIR(" T", mintravelfeedrate );
|
|
|
|
SERIAL_ECHOPAIR(" B", minsegmenttime );
|
|
|
|
SERIAL_ECHOPAIR(" X", max_xy_jerk );
|
|
|
|
SERIAL_ECHOPAIR(" Z", max_z_jerk);
|
|
|
|
SERIAL_ECHOPAIR(" E", max_e_jerk);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO_START;
|
|
|
|
if (!forReplay) {
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHOLNPGM("Home offset (mm):");
|
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
2015-03-22 00:30:02 +01:00
|
|
|
SERIAL_ECHOPAIR(" M206 X", home_offset[X_AXIS] );
|
|
|
|
SERIAL_ECHOPAIR(" Y", home_offset[Y_AXIS] );
|
|
|
|
SERIAL_ECHOPAIR(" Z", home_offset[Z_AXIS] );
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
|
|
|
|
#ifdef DELTA
|
2014-03-16 17:00:02 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Endstop adjustement (mm):");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M666 X", endstop_adj[X_AXIS] );
|
|
|
|
SERIAL_ECHOPAIR(" Y", endstop_adj[Y_AXIS] );
|
|
|
|
SERIAL_ECHOPAIR(" Z", endstop_adj[Z_AXIS] );
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2014-12-29 02:43:14 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHOLNPGM("Delta settings: L=delta_diagonal_rod, R=delta_radius, S=delta_segments_per_second");
|
2014-12-29 02:43:14 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHOPAIR(" M665 L", delta_diagonal_rod );
|
|
|
|
SERIAL_ECHOPAIR(" R", delta_radius );
|
|
|
|
SERIAL_ECHOPAIR(" S", delta_segments_per_second );
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-03-24 18:06:44 +01:00
|
|
|
#elif defined(Z_DUAL_ENDSTOPS)
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Z2 Endstop adjustement (mm):");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M666 Z", z_endstop_adj );
|
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif // DELTA
|
|
|
|
|
|
|
|
#ifdef PIDTEMP
|
2014-12-29 02:43:14 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("PID settings:");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M301 P", PID_PARAM(Kp, 0)); // for compatibility with hosts, only echos values for E0
|
|
|
|
SERIAL_ECHOPAIR(" I", unscalePID_i(PID_PARAM(Ki, 0)));
|
|
|
|
SERIAL_ECHOPAIR(" D", unscalePID_d(PID_PARAM(Kd, 0)));
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif // PIDTEMP
|
|
|
|
|
|
|
|
#ifdef FWRETRACT
|
|
|
|
|
2014-12-29 02:43:14 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Retract: S=Length (mm) F:Speed (mm/m) Z: ZLift (mm)");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M207 S", retract_length);
|
|
|
|
SERIAL_ECHOPAIR(" F", retract_feedrate*60);
|
|
|
|
SERIAL_ECHOPAIR(" Z", retract_zlift);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2014-12-29 02:43:14 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Recover: S=Extra length (mm) F:Speed (mm/m)");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M208 S", retract_recover_length);
|
|
|
|
SERIAL_ECHOPAIR(" F", retract_recover_feedrate*60);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2014-12-29 02:43:14 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Auto-Retract: S=0 to disable, 1 to interpret extrude-only moves as retracts or recoveries");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M209 S", (unsigned long)(autoretract_enabled ? 1 : 0));
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
if (!forReplay) {
|
2014-12-29 02:43:14 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHOLNPGM("Multi-extruder settings:");
|
2015-01-23 23:13:06 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHOPAIR(" Swap retract length (mm): ", retract_length_swap);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" Swap rec. addl. length (mm): ", retract_recover_length_swap);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
|
|
|
#endif // EXTRUDERS > 1
|
2012-11-07 23:16:43 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif // FWRETRACT
|
2012-11-07 23:16:43 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO_START;
|
|
|
|
if (volumetric_enabled) {
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Filament settings:");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M200 D", filament_size[0]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" M200 T1 D", filament_size[1]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
#if EXTRUDERS > 2
|
2012-11-07 23:16:43 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHOPAIR(" M200 T2 D", filament_size[2]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
#if EXTRUDERS > 3
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" M200 T3 D", filament_size[3]);
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Filament settings: Disabled");
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
}
|
2015-01-28 10:08:48 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 05:14:00 +01:00
|
|
|
#ifdef ENABLE_AUTO_BED_LEVELING
|
2015-01-28 10:08:48 +01:00
|
|
|
SERIAL_ECHO_START;
|
2015-03-26 05:14:00 +01:00
|
|
|
#ifdef CUSTOM_M_CODES
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Z-Probe Offset (mm):");
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
}
|
2015-03-27 08:46:39 +01:00
|
|
|
SERIAL_ECHOPAIR(" M", (unsigned long)CUSTOM_M_CODE_SET_Z_PROBE_OFFSET);
|
2015-03-26 05:14:00 +01:00
|
|
|
SERIAL_ECHOPAIR(" Z", -zprobe_zoffset);
|
|
|
|
#else
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOPAIR("Z-Probe Offset (mm):", -zprobe_zoffset);
|
|
|
|
}
|
|
|
|
#endif
|
2015-01-29 06:19:51 +01:00
|
|
|
SERIAL_EOL;
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif
|
2012-11-07 23:16:43 +01:00
|
|
|
}
|
Allow Edit menu to call fn after edit; Fix PID Ki and Kd display in menus; Actually use changed PID and Max Accel values
Add new 'callback' edit-menu types that call a function after the edit is done. Use this to display and edit Ki and Kd correctly (removing the scaling first and reapplying it after). Also use it to reset maximum stepwise acceleration rates, after updating mm/s^2 rates via menus. (Previously, changes did nothing to affect planner unless saved back to EEPROM, and the machine reset).
Add calls to updatePID() so that PID loop uses updated values whether set by gcode (it already did this), or by restoring defaults, or loading from EEPROM (it didn't do those last two). Similarly, update the maximum step/s^2 accel rates when the mm/s^2 values are changed - whether by menu edits, restore defaults, or EEPROM read.
Refactor the acceleration rate update logic, and the PID scaling logic, into new functions that can be called from wherever, including the callbacks.
Add menu items to allow the z jerk and e jerk to be viewed/edited in the Control->Motion menu, as per xy jerk.
Conflicts:
Marlin/language.h
2013-03-19 15:05:11 +01:00
|
|
|
|
2015-01-28 10:08:48 +01:00
|
|
|
#endif // !DISABLE_M503
|