2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2015-04-26 04:04:54 +00:00
|
|
|
* configuration_store.cpp
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
|
|
|
* Configuration and EEPROM storage
|
|
|
|
*
|
2015-04-03 23:38:05 +00:00
|
|
|
* 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: Variables in the Store and Retrieve sections must be in the same order.
|
|
|
|
* If a feature is disabled, some data must still be written that, when read,
|
|
|
|
* either sets a Sane Default, or results in No Change to the existing value.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-12-09 11:45:55 +00:00
|
|
|
#define EEPROM_VERSION "V28"
|
2015-04-03 23:38:05 +00:00
|
|
|
|
2016-06-30 01:18:46 +00:00
|
|
|
// Change EEPROM version if these are changed:
|
|
|
|
#define EEPROM_OFFSET 100
|
|
|
|
|
2015-04-03 23:38:05 +00:00
|
|
|
/**
|
2016-12-09 11:45:55 +00:00
|
|
|
* V28 EEPROM Layout:
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
2016-02-17 21:05:12 +00:00
|
|
|
* 100 Version (char x4)
|
2016-06-30 01:12:23 +00:00
|
|
|
* 104 EEPROM Checksum (uint16_t)
|
2016-02-17 21:05:12 +00:00
|
|
|
*
|
2016-12-09 11:45:55 +00:00
|
|
|
* 106 E_STEPPERS (uint8_t)
|
|
|
|
* 107 M92 XYZE planner.axis_steps_per_mm (float x4 ... x7)
|
|
|
|
* 123 M203 XYZE planner.max_feedrate_mm_s (float x4 ... x7)
|
|
|
|
* 139 M201 XYZE planner.max_acceleration_mm_per_s2 (uint32_t x4 ... x7)
|
|
|
|
* 155 M204 P planner.acceleration (float)
|
|
|
|
* 159 M204 R planner.retract_acceleration (float)
|
|
|
|
* 163 M204 T planner.travel_acceleration (float)
|
|
|
|
* 167 M205 S planner.min_feedrate_mm_s (float)
|
|
|
|
* 171 M205 T planner.min_travel_feedrate_mm_s (float)
|
|
|
|
* 175 M205 B planner.min_segment_time (ulong)
|
|
|
|
* 179 M205 X planner.max_jerk[X_AXIS] (float)
|
|
|
|
* 183 M205 Y planner.max_jerk[Y_AXIS] (float)
|
|
|
|
* 187 M205 Z planner.max_jerk[Z_AXIS] (float)
|
|
|
|
* 191 M205 E planner.max_jerk[E_AXIS] (float)
|
|
|
|
* 195 M206 XYZ home_offset (float x3)
|
|
|
|
* 207 M218 XYZ hotend_offset (float x3 per additional hotend)
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
2015-03-15 22:18:11 +00:00
|
|
|
* Mesh bed leveling:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 219 M420 S status (uint8)
|
|
|
|
* 220 z_offset (float)
|
|
|
|
* 224 mesh_num_x (uint8 as set in firmware)
|
|
|
|
* 225 mesh_num_y (uint8 as set in firmware)
|
|
|
|
* 226 G29 S3 XYZ z_values[][] (float x9, by default, up to float x 81)
|
2016-03-24 21:16:09 +00:00
|
|
|
*
|
|
|
|
* AUTO BED LEVELING
|
2016-12-09 11:45:55 +00:00
|
|
|
* 262 M851 zprobe_zoffset (float)
|
2015-03-15 22:18:11 +00:00
|
|
|
*
|
2015-01-28 09:08:48 +00:00
|
|
|
* DELTA:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 266 M666 XYZ endstop_adj (float x3)
|
|
|
|
* 278 M665 R delta_radius (float)
|
|
|
|
* 282 M665 L delta_diagonal_rod (float)
|
|
|
|
* 286 M665 S delta_segments_per_second (float)
|
|
|
|
* 290 M665 A delta_diagonal_rod_trim_tower_1 (float)
|
|
|
|
* 294 M665 B delta_diagonal_rod_trim_tower_2 (float)
|
|
|
|
* 298 M665 C delta_diagonal_rod_trim_tower_3 (float)
|
2016-02-17 21:05:12 +00:00
|
|
|
*
|
|
|
|
* Z_DUAL_ENDSTOPS:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 302 M666 Z z_endstop_adj (float)
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
|
|
|
* ULTIPANEL:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 306 M145 S0 H lcd_preheat_hotend_temp (int x2)
|
|
|
|
* 310 M145 S0 B lcd_preheat_bed_temp (int x2)
|
|
|
|
* 314 M145 S0 F lcd_preheat_fan_speed (int x2)
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
|
|
|
* PIDTEMP:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 318 M301 E0 PIDC Kp[0], Ki[0], Kd[0], Kc[0] (float x4)
|
|
|
|
* 334 M301 E1 PIDC Kp[1], Ki[1], Kd[1], Kc[1] (float x4)
|
|
|
|
* 350 M301 E2 PIDC Kp[2], Ki[2], Kd[2], Kc[2] (float x4)
|
|
|
|
* 366 M301 E3 PIDC Kp[3], Ki[3], Kd[3], Kc[3] (float x4)
|
|
|
|
* 382 M301 L lpq_len (int)
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
2015-04-03 23:38:05 +00:00
|
|
|
* PIDTEMPBED:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 384 M304 PID thermalManager.bedKp, thermalManager.bedKi, thermalManager.bedKd (float x3)
|
2015-04-03 23:38:05 +00:00
|
|
|
*
|
2015-01-28 09:08:48 +00:00
|
|
|
* DOGLCD:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 396 M250 C lcd_contrast (int)
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
|
|
|
* FWRETRACT:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 398 M209 S autoretract_enabled (bool)
|
|
|
|
* 399 M207 S retract_length (float)
|
|
|
|
* 403 M207 W retract_length_swap (float)
|
|
|
|
* 407 M207 F retract_feedrate_mm_s (float)
|
|
|
|
* 411 M207 Z retract_zlift (float)
|
|
|
|
* 415 M208 S retract_recover_length (float)
|
|
|
|
* 419 M208 W retract_recover_length_swap (float)
|
|
|
|
* 423 M208 F retract_recover_feedrate_mm_s (float)
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
2016-02-17 21:05:12 +00:00
|
|
|
* Volumetric Extrusion:
|
2016-12-09 11:45:55 +00:00
|
|
|
* 427 M200 D volumetric_enabled (bool)
|
|
|
|
* 428 M200 T D filament_size (float x4) (T0..3)
|
2015-01-28 09:08:48 +00:00
|
|
|
*
|
2016-12-09 11:45:55 +00:00
|
|
|
* 444 This Slot is Available!
|
2015-03-24 17:06:44 +00:00
|
|
|
*
|
2015-01-28 09:08:48 +00:00
|
|
|
*/
|
2012-11-07 22:16:43 +00:00
|
|
|
#include "Marlin.h"
|
2015-01-29 05:19:51 +00:00
|
|
|
#include "language.h"
|
2016-07-14 23:12:20 +00:00
|
|
|
#include "endstops.h"
|
2012-11-07 22:16:43 +00:00
|
|
|
#include "planner.h"
|
|
|
|
#include "temperature.h"
|
|
|
|
#include "ultralcd.h"
|
2015-04-26 04:04:54 +00:00
|
|
|
#include "configuration_store.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 14:05:11 +00:00
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
2015-04-28 02:48:34 +00:00
|
|
|
#include "mesh_bed_leveling.h"
|
|
|
|
#endif
|
2015-03-15 22:18:11 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
/**
|
2016-06-30 01:19:26 +00:00
|
|
|
* Post-process after Retrieve or Reset
|
2015-04-27 01:44:01 +00:00
|
|
|
*/
|
2016-06-30 01:19:26 +00:00
|
|
|
void Config_Postprocess() {
|
|
|
|
// steps per s2 needs to be updated to agree with units per s2
|
|
|
|
planner.reset_acceleration_rates();
|
|
|
|
|
2016-07-24 02:36:26 +00:00
|
|
|
// Make sure delta kinematics are updated before refreshing the
|
|
|
|
// planner position so the stepper counts will be set correctly.
|
2016-06-30 01:19:26 +00:00
|
|
|
#if ENABLED(DELTA)
|
|
|
|
recalc_delta_settings(delta_radius, delta_diagonal_rod);
|
|
|
|
#endif
|
2012-11-07 22:16:43 +00:00
|
|
|
|
2016-07-24 02:36:26 +00:00
|
|
|
// Refresh steps_to_mm with the reciprocal of axis_steps_per_mm
|
|
|
|
// and init stepper.count[], planner.position[] with current_position
|
|
|
|
planner.refresh_positioning();
|
|
|
|
|
2016-06-30 01:19:26 +00:00
|
|
|
#if ENABLED(PIDTEMP)
|
|
|
|
thermalManager.updatePID();
|
|
|
|
#endif
|
2012-11-07 22:16:43 +00:00
|
|
|
|
2016-06-30 01:19:26 +00:00
|
|
|
calculate_volumetric_multipliers();
|
2016-08-19 06:00:46 +00:00
|
|
|
|
|
|
|
// Software endstops depend on home_offset
|
|
|
|
LOOP_XYZ(i) update_software_endstops((AxisEnum)i);
|
2016-06-30 01:19:26 +00:00
|
|
|
}
|
2012-11-07 22:16:43 +00:00
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(EEPROM_SETTINGS)
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-12-09 12:13:44 +00:00
|
|
|
uint16_t eeprom_checksum;
|
|
|
|
const char version[4] = EEPROM_VERSION;
|
|
|
|
|
|
|
|
bool eeprom_write_error;
|
|
|
|
|
|
|
|
void _EEPROM_writeData(int &pos, uint8_t* value, uint8_t size) {
|
|
|
|
if (eeprom_write_error) return;
|
|
|
|
while (size--) {
|
|
|
|
uint8_t * const p = (uint8_t * const)pos;
|
|
|
|
const uint8_t v = *value;
|
|
|
|
// EEPROM has only ~100,000 write cycles,
|
|
|
|
// so only write bytes that have changed!
|
|
|
|
if (v != eeprom_read_byte(p)) {
|
|
|
|
eeprom_write_byte(p, v);
|
|
|
|
if (eeprom_read_byte(p) != v) {
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOLNPGM(MSG_ERR_EEPROM_WRITE);
|
|
|
|
eeprom_write_error = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eeprom_checksum += v;
|
|
|
|
pos++;
|
|
|
|
value++;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
void _EEPROM_readData(int &pos, uint8_t* value, uint8_t size) {
|
|
|
|
do {
|
|
|
|
uint8_t c = eeprom_read_byte((unsigned char*)pos);
|
|
|
|
*value = c;
|
|
|
|
eeprom_checksum += c;
|
|
|
|
pos++;
|
|
|
|
value++;
|
|
|
|
} while (--size);
|
|
|
|
}
|
|
|
|
|
2016-06-30 01:18:46 +00:00
|
|
|
#define DUMMY_PID_VALUE 3000.0f
|
2016-07-24 17:19:49 +00:00
|
|
|
#define EEPROM_START() int eeprom_index = EEPROM_OFFSET
|
|
|
|
#define EEPROM_SKIP(VAR) eeprom_index += sizeof(VAR)
|
|
|
|
#define EEPROM_WRITE(VAR) _EEPROM_writeData(eeprom_index, (uint8_t*)&VAR, sizeof(VAR))
|
|
|
|
#define EEPROM_READ(VAR) _EEPROM_readData(eeprom_index, (uint8_t*)&VAR, sizeof(VAR))
|
2016-06-30 01:18:46 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
/**
|
|
|
|
* M500 - Store Configuration
|
|
|
|
*/
|
|
|
|
void Config_StoreSettings() {
|
|
|
|
float dummy = 0.0f;
|
|
|
|
char ver[4] = "000";
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_START();
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-12-09 11:45:04 +00:00
|
|
|
eeprom_write_error = false;
|
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(ver); // invalidate data first
|
|
|
|
EEPROM_SKIP(eeprom_checksum); // Skip the checksum slot
|
2016-06-30 01:12:23 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
eeprom_checksum = 0; // clear before first "real data"
|
2016-07-24 17:19:49 +00:00
|
|
|
|
2016-12-09 11:45:55 +00:00
|
|
|
const uint8_t esteppers = E_STEPPERS;
|
|
|
|
EEPROM_WRITE(esteppers);
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(planner.axis_steps_per_mm);
|
|
|
|
EEPROM_WRITE(planner.max_feedrate_mm_s);
|
|
|
|
EEPROM_WRITE(planner.max_acceleration_mm_per_s2);
|
2016-12-09 11:45:55 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(planner.acceleration);
|
|
|
|
EEPROM_WRITE(planner.retract_acceleration);
|
|
|
|
EEPROM_WRITE(planner.travel_acceleration);
|
|
|
|
EEPROM_WRITE(planner.min_feedrate_mm_s);
|
|
|
|
EEPROM_WRITE(planner.min_travel_feedrate_mm_s);
|
|
|
|
EEPROM_WRITE(planner.min_segment_time);
|
|
|
|
EEPROM_WRITE(planner.max_jerk);
|
|
|
|
EEPROM_WRITE(home_offset);
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:39:23 +00:00
|
|
|
#if HOTENDS > 1
|
|
|
|
// Skip hotend 0 which must be 0
|
|
|
|
for (uint8_t e = 1; e < HOTENDS; e++)
|
2016-10-28 23:55:42 +00:00
|
|
|
LOOP_XYZ(i) EEPROM_WRITE(hotend_offset[i][e]);
|
2016-10-28 23:39:23 +00:00
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
2016-10-28 23:55:42 +00: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];
|
|
|
|
uint8_t mesh_num_x = MESH_NUM_X_POINTS,
|
|
|
|
mesh_num_y = MESH_NUM_Y_POINTS,
|
|
|
|
dummy_uint8 = mbl.status & _BV(MBL_STATUS_HAS_MESH_BIT);
|
|
|
|
EEPROM_WRITE(dummy_uint8);
|
|
|
|
EEPROM_WRITE(mbl.z_offset);
|
|
|
|
EEPROM_WRITE(mesh_num_x);
|
|
|
|
EEPROM_WRITE(mesh_num_y);
|
|
|
|
EEPROM_WRITE(mbl.z_values);
|
2015-03-18 20:00:31 +00:00
|
|
|
#else
|
2016-10-28 23:55:42 +00:00
|
|
|
// For disabled MBL write a default mesh
|
|
|
|
uint8_t mesh_num_x = 3,
|
|
|
|
mesh_num_y = 3,
|
|
|
|
dummy_uint8 = 0;
|
|
|
|
dummy = 0.0f;
|
|
|
|
EEPROM_WRITE(dummy_uint8);
|
|
|
|
EEPROM_WRITE(dummy);
|
|
|
|
EEPROM_WRITE(mesh_num_x);
|
|
|
|
EEPROM_WRITE(mesh_num_y);
|
|
|
|
for (uint8_t q = 0; q < mesh_num_x * mesh_num_y; q++) EEPROM_WRITE(dummy);
|
2015-04-27 04:06:04 +00:00
|
|
|
#endif // MESH_BED_LEVELING
|
2015-03-15 22:18:11 +00:00
|
|
|
|
2016-06-15 01:05:20 +00:00
|
|
|
#if !HAS_BED_PROBE
|
2015-03-26 04:14:00 +00:00
|
|
|
float zprobe_zoffset = 0;
|
|
|
|
#endif
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(zprobe_zoffset);
|
2015-03-26 04:14:00 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
// 9 floats for DELTA / Z_DUAL_ENDSTOPS
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(DELTA)
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(endstop_adj); // 3 floats
|
|
|
|
EEPROM_WRITE(delta_radius); // 1 float
|
|
|
|
EEPROM_WRITE(delta_diagonal_rod); // 1 float
|
|
|
|
EEPROM_WRITE(delta_segments_per_second); // 1 float
|
|
|
|
EEPROM_WRITE(delta_diagonal_rod_trim_tower_1); // 1 float
|
|
|
|
EEPROM_WRITE(delta_diagonal_rod_trim_tower_2); // 1 float
|
|
|
|
EEPROM_WRITE(delta_diagonal_rod_trim_tower_3); // 1 float
|
2015-07-31 05:31:45 +00:00
|
|
|
#elif ENABLED(Z_DUAL_ENDSTOPS)
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(z_endstop_adj); // 1 float
|
2015-03-24 17:06:44 +00:00
|
|
|
dummy = 0.0f;
|
2016-10-28 23:55:42 +00:00
|
|
|
for (uint8_t q = 8; q--;) EEPROM_WRITE(dummy);
|
2015-01-28 09:08:48 +00:00
|
|
|
#else
|
2015-03-24 17:06:44 +00:00
|
|
|
dummy = 0.0f;
|
2016-10-28 23:55:42 +00:00
|
|
|
for (uint8_t q = 9; q--;) EEPROM_WRITE(dummy);
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if DISABLED(ULTIPANEL)
|
2016-10-27 07:40:37 +00:00
|
|
|
const int lcd_preheat_hotend_temp[2] = { PREHEAT_1_TEMP_HOTEND, PREHEAT_2_TEMP_HOTEND },
|
|
|
|
lcd_preheat_bed_temp[2] = { PREHEAT_1_TEMP_BED, PREHEAT_2_TEMP_BED },
|
|
|
|
lcd_preheat_fan_speed[2] = { PREHEAT_1_FAN_SPEED, PREHEAT_2_FAN_SPEED };
|
2016-10-28 23:55:42 +00:00
|
|
|
#endif // !ULTIPANEL
|
|
|
|
|
2016-10-27 07:40:37 +00:00
|
|
|
EEPROM_WRITE(lcd_preheat_hotend_temp);
|
|
|
|
EEPROM_WRITE(lcd_preheat_bed_temp);
|
|
|
|
EEPROM_WRITE(lcd_preheat_fan_speed);
|
2016-10-28 23:55:42 +00:00
|
|
|
|
|
|
|
for (uint8_t e = 0; e < MAX_EXTRUDERS; e++) {
|
|
|
|
|
|
|
|
#if ENABLED(PIDTEMP)
|
|
|
|
if (e < HOTENDS) {
|
|
|
|
EEPROM_WRITE(PID_PARAM(Kp, e));
|
|
|
|
EEPROM_WRITE(PID_PARAM(Ki, e));
|
|
|
|
EEPROM_WRITE(PID_PARAM(Kd, e));
|
2016-08-01 00:49:34 +00:00
|
|
|
#if ENABLED(PID_EXTRUSION_SCALING)
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(PID_PARAM(Kc, e));
|
2015-01-28 09:08:48 +00:00
|
|
|
#else
|
2016-10-28 23:55:42 +00:00
|
|
|
dummy = 1.0f; // 1.0 = default kc
|
|
|
|
EEPROM_WRITE(dummy);
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
else
|
|
|
|
#endif // !PIDTEMP
|
|
|
|
{
|
|
|
|
dummy = DUMMY_PID_VALUE; // When read, will not change the existing value
|
|
|
|
EEPROM_WRITE(dummy); // Kp
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (uint8_t q = 3; q--;) EEPROM_WRITE(dummy); // Ki, Kd, Kc
|
2015-01-28 09:08:48 +00:00
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
|
|
|
|
} // Hotends Loop
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-08-01 00:49:34 +00:00
|
|
|
#if DISABLED(PID_EXTRUSION_SCALING)
|
2016-10-28 23:55:42 +00:00
|
|
|
int lpq_len = 20;
|
2015-08-31 02:04:30 +00:00
|
|
|
#endif
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(lpq_len);
|
|
|
|
|
|
|
|
#if DISABLED(PIDTEMPBED)
|
|
|
|
dummy = DUMMY_PID_VALUE;
|
|
|
|
for (uint8_t q = 3; q--;) EEPROM_WRITE(dummy);
|
2016-04-29 01:18:13 +00:00
|
|
|
#else
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(thermalManager.bedKp);
|
|
|
|
EEPROM_WRITE(thermalManager.bedKi);
|
|
|
|
EEPROM_WRITE(thermalManager.bedKd);
|
2015-04-03 23:38:05 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-31 18:47:02 +00:00
|
|
|
#if !HAS_LCD_CONTRAST
|
2016-10-28 23:55:42 +00:00
|
|
|
const int lcd_contrast = 32;
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(lcd_contrast);
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(FWRETRACT)
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(autoretract_enabled);
|
|
|
|
EEPROM_WRITE(retract_length);
|
2015-01-28 09:08:48 +00:00
|
|
|
#if EXTRUDERS > 1
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(retract_length_swap);
|
2015-01-28 09:08:48 +00:00
|
|
|
#else
|
2016-10-28 23:55:42 +00:00
|
|
|
dummy = 0.0f;
|
|
|
|
EEPROM_WRITE(dummy);
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(retract_feedrate_mm_s);
|
|
|
|
EEPROM_WRITE(retract_zlift);
|
|
|
|
EEPROM_WRITE(retract_recover_length);
|
2015-01-28 09:08:48 +00:00
|
|
|
#if EXTRUDERS > 1
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(retract_recover_length_swap);
|
2015-01-28 09:08:48 +00:00
|
|
|
#else
|
2016-10-28 23:55:42 +00:00
|
|
|
dummy = 0.0f;
|
|
|
|
EEPROM_WRITE(dummy);
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(retract_recover_feedrate_mm_s);
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif // FWRETRACT
|
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
EEPROM_WRITE(volumetric_enabled);
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
// Save filament sizes
|
2016-06-30 07:07:31 +00:00
|
|
|
for (uint8_t q = 0; q < MAX_EXTRUDERS; q++) {
|
2016-10-28 23:55:42 +00:00
|
|
|
if (q < COUNT(filament_size)) dummy = filament_size[q];
|
|
|
|
EEPROM_WRITE(dummy);
|
2015-01-28 09:08:48 +00:00
|
|
|
}
|
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
uint16_t final_checksum = eeprom_checksum,
|
|
|
|
eeprom_size = eeprom_index;
|
|
|
|
|
|
|
|
eeprom_index = EEPROM_OFFSET;
|
|
|
|
EEPROM_WRITE(version);
|
|
|
|
EEPROM_WRITE(final_checksum);
|
|
|
|
|
|
|
|
// Report storage size
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR("Settings Stored (", eeprom_size);
|
|
|
|
SERIAL_ECHOLNPGM(" bytes)");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* M501 - Retrieve Configuration
|
|
|
|
*/
|
|
|
|
void Config_RetrieveSettings() {
|
|
|
|
|
|
|
|
EEPROM_START();
|
|
|
|
|
|
|
|
char stored_ver[4];
|
|
|
|
EEPROM_READ(stored_ver);
|
|
|
|
|
|
|
|
uint16_t stored_checksum;
|
|
|
|
EEPROM_READ(stored_checksum);
|
|
|
|
|
|
|
|
// SERIAL_ECHOPAIR("Version: [", ver);
|
|
|
|
// SERIAL_ECHOPAIR("] Stored version: [", stored_ver);
|
|
|
|
// SERIAL_CHAR(']');
|
|
|
|
// SERIAL_EOL;
|
|
|
|
|
2016-12-09 11:45:55 +00:00
|
|
|
// Version has to match or defaults are used
|
2016-10-28 23:55:42 +00:00
|
|
|
if (strncmp(version, stored_ver, 3) != 0) {
|
2016-06-30 01:12:23 +00:00
|
|
|
Config_ResetDefault();
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
else {
|
|
|
|
float dummy = 0;
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
eeprom_checksum = 0; // clear before reading first "real data"
|
|
|
|
|
2016-12-09 11:45:55 +00:00
|
|
|
// Number of esteppers may change
|
|
|
|
uint8_t esteppers;
|
|
|
|
EEPROM_READ(esteppers);
|
|
|
|
|
|
|
|
// Get only the number of E stepper parameters previously stored
|
|
|
|
// Any steppers added later are set to their defaults
|
|
|
|
const float def1[] = DEFAULT_AXIS_STEPS_PER_UNIT, def2[] = DEFAULT_MAX_FEEDRATE;
|
|
|
|
const long def3[] = DEFAULT_MAX_ACCELERATION;
|
|
|
|
float tmp1[XYZ + esteppers], tmp2[XYZ + esteppers];
|
|
|
|
long tmp3[XYZ + esteppers];
|
|
|
|
EEPROM_READ(tmp1);
|
|
|
|
EEPROM_READ(tmp2);
|
|
|
|
EEPROM_READ(tmp3);
|
|
|
|
LOOP_XYZE_N(i) {
|
|
|
|
planner.axis_steps_per_mm[i] = i < XYZ + esteppers ? tmp1[i] : def1[i < COUNT(def1) ? i : COUNT(def1) - 1];
|
|
|
|
planner.max_feedrate_mm_s[i] = i < XYZ + esteppers ? tmp2[i] : def2[i < COUNT(def2) ? i : COUNT(def2) - 1];
|
|
|
|
planner.max_acceleration_mm_per_s2[i] = i < XYZ + esteppers ? tmp3[i] : def3[i < COUNT(def3) ? i : COUNT(def3) - 1];
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
|
|
|
|
EEPROM_READ(planner.acceleration);
|
|
|
|
EEPROM_READ(planner.retract_acceleration);
|
|
|
|
EEPROM_READ(planner.travel_acceleration);
|
|
|
|
EEPROM_READ(planner.min_feedrate_mm_s);
|
|
|
|
EEPROM_READ(planner.min_travel_feedrate_mm_s);
|
|
|
|
EEPROM_READ(planner.min_segment_time);
|
|
|
|
EEPROM_READ(planner.max_jerk);
|
|
|
|
EEPROM_READ(home_offset);
|
|
|
|
|
|
|
|
#if HOTENDS > 1
|
|
|
|
// Skip hotend 0 which must be 0
|
|
|
|
for (uint8_t e = 1; e < HOTENDS; e++)
|
|
|
|
LOOP_XYZ(i) EEPROM_READ(hotend_offset[i][e]);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
uint8_t dummy_uint8 = 0, mesh_num_x = 0, mesh_num_y = 0;
|
|
|
|
EEPROM_READ(dummy_uint8);
|
|
|
|
EEPROM_READ(dummy);
|
|
|
|
EEPROM_READ(mesh_num_x);
|
|
|
|
EEPROM_READ(mesh_num_y);
|
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
|
|
|
mbl.status = dummy_uint8;
|
|
|
|
mbl.z_offset = dummy;
|
|
|
|
if (mesh_num_x == MESH_NUM_X_POINTS && mesh_num_y == MESH_NUM_Y_POINTS) {
|
|
|
|
// EEPROM data fits the current mesh
|
|
|
|
EEPROM_READ(mbl.z_values);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// EEPROM data is stale
|
|
|
|
mbl.reset();
|
|
|
|
for (uint8_t q = 0; q < mesh_num_x * mesh_num_y; q++) EEPROM_READ(dummy);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
// MBL is disabled - skip the stored data
|
|
|
|
for (uint8_t q = 0; q < mesh_num_x * mesh_num_y; q++) EEPROM_READ(dummy);
|
|
|
|
#endif // MESH_BED_LEVELING
|
|
|
|
|
|
|
|
#if !HAS_BED_PROBE
|
|
|
|
float zprobe_zoffset = 0;
|
|
|
|
#endif
|
|
|
|
EEPROM_READ(zprobe_zoffset);
|
|
|
|
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
EEPROM_READ(endstop_adj); // 3 floats
|
|
|
|
EEPROM_READ(delta_radius); // 1 float
|
|
|
|
EEPROM_READ(delta_diagonal_rod); // 1 float
|
|
|
|
EEPROM_READ(delta_segments_per_second); // 1 float
|
|
|
|
EEPROM_READ(delta_diagonal_rod_trim_tower_1); // 1 float
|
|
|
|
EEPROM_READ(delta_diagonal_rod_trim_tower_2); // 1 float
|
|
|
|
EEPROM_READ(delta_diagonal_rod_trim_tower_3); // 1 float
|
|
|
|
#elif ENABLED(Z_DUAL_ENDSTOPS)
|
|
|
|
EEPROM_READ(z_endstop_adj);
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (uint8_t q=8; q--;) EEPROM_READ(dummy);
|
|
|
|
#else
|
|
|
|
dummy = 0.0f;
|
|
|
|
for (uint8_t q=9; q--;) EEPROM_READ(dummy);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DISABLED(ULTIPANEL)
|
2016-10-27 07:40:37 +00:00
|
|
|
int lcd_preheat_hotend_temp[2], lcd_preheat_bed_temp[2], lcd_preheat_fan_speed[2];
|
2016-10-28 23:55:42 +00:00
|
|
|
#endif
|
|
|
|
|
2016-10-27 07:40:37 +00:00
|
|
|
EEPROM_READ(lcd_preheat_hotend_temp);
|
|
|
|
EEPROM_READ(lcd_preheat_bed_temp);
|
|
|
|
EEPROM_READ(lcd_preheat_fan_speed);
|
2016-10-28 23:55:42 +00:00
|
|
|
|
|
|
|
#if ENABLED(PIDTEMP)
|
|
|
|
for (uint8_t e = 0; e < MAX_EXTRUDERS; e++) {
|
|
|
|
EEPROM_READ(dummy); // Kp
|
|
|
|
if (e < HOTENDS && 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(PID_PARAM(Ki, e));
|
|
|
|
EEPROM_READ(PID_PARAM(Kd, e));
|
|
|
|
#if ENABLED(PID_EXTRUSION_SCALING)
|
|
|
|
EEPROM_READ(PID_PARAM(Kc, e));
|
|
|
|
#else
|
|
|
|
EEPROM_READ(dummy);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (uint8_t q=3; q--;) EEPROM_READ(dummy); // Ki, Kd, Kc
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else // !PIDTEMP
|
|
|
|
// 4 x 4 = 16 slots for PID parameters
|
|
|
|
for (uint8_t q = MAX_EXTRUDERS * 4; q--;) EEPROM_READ(dummy); // Kp, Ki, Kd, Kc
|
|
|
|
#endif // !PIDTEMP
|
|
|
|
|
|
|
|
#if DISABLED(PID_EXTRUSION_SCALING)
|
|
|
|
int lpq_len;
|
|
|
|
#endif
|
|
|
|
EEPROM_READ(lpq_len);
|
|
|
|
|
|
|
|
#if ENABLED(PIDTEMPBED)
|
|
|
|
EEPROM_READ(dummy); // bedKp
|
|
|
|
if (dummy != DUMMY_PID_VALUE) {
|
|
|
|
thermalManager.bedKp = dummy;
|
|
|
|
EEPROM_READ(thermalManager.bedKi);
|
|
|
|
EEPROM_READ(thermalManager.bedKd);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
for (uint8_t q=3; q--;) EEPROM_READ(dummy); // bedKp, bedKi, bedKd
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !HAS_LCD_CONTRAST
|
|
|
|
int lcd_contrast;
|
|
|
|
#endif
|
|
|
|
EEPROM_READ(lcd_contrast);
|
|
|
|
|
|
|
|
#if ENABLED(FWRETRACT)
|
|
|
|
EEPROM_READ(autoretract_enabled);
|
|
|
|
EEPROM_READ(retract_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
EEPROM_READ(retract_length_swap);
|
|
|
|
#else
|
|
|
|
EEPROM_READ(dummy);
|
|
|
|
#endif
|
|
|
|
EEPROM_READ(retract_feedrate_mm_s);
|
|
|
|
EEPROM_READ(retract_zlift);
|
|
|
|
EEPROM_READ(retract_recover_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
EEPROM_READ(retract_recover_length_swap);
|
|
|
|
#else
|
|
|
|
EEPROM_READ(dummy);
|
|
|
|
#endif
|
|
|
|
EEPROM_READ(retract_recover_feedrate_mm_s);
|
|
|
|
#endif // FWRETRACT
|
|
|
|
|
|
|
|
EEPROM_READ(volumetric_enabled);
|
|
|
|
|
|
|
|
for (uint8_t q = 0; q < MAX_EXTRUDERS; q++) {
|
|
|
|
EEPROM_READ(dummy);
|
|
|
|
if (q < COUNT(filament_size)) filament_size[q] = dummy;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (eeprom_checksum == stored_checksum) {
|
|
|
|
Config_Postprocess();
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHO(version);
|
|
|
|
SERIAL_ECHOPAIR(" stored settings retrieved (", eeprom_index);
|
|
|
|
SERIAL_ECHOLNPGM(" bytes)");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SERIAL_ERROR_START;
|
|
|
|
SERIAL_ERRORLNPGM("EEPROM checksum mismatch");
|
|
|
|
Config_ResetDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(EEPROM_CHITCHAT)
|
|
|
|
Config_PrintSettings();
|
|
|
|
#endif
|
|
|
|
}
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:53:48 +00:00
|
|
|
#else // !EEPROM_SETTINGS
|
|
|
|
|
|
|
|
void Config_StoreSettings() {
|
|
|
|
SERIAL_ERROR_START;
|
|
|
|
SERIAL_ERRORLNPGM("EEPROM disabled");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // !EEPROM_SETTINGS
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
/**
|
2016-06-30 01:18:46 +00:00
|
|
|
* M502 - Reset Configuration
|
2015-04-27 01:44:01 +00:00
|
|
|
*/
|
2015-01-28 09:08:48 +00:00
|
|
|
void Config_ResetDefault() {
|
2016-10-28 23:39:23 +00:00
|
|
|
const float tmp1[] = DEFAULT_AXIS_STEPS_PER_UNIT, tmp2[] = DEFAULT_MAX_FEEDRATE;
|
|
|
|
const long tmp3[] = DEFAULT_MAX_ACCELERATION;
|
2016-12-04 04:02:27 +00:00
|
|
|
LOOP_XYZE_N(i) {
|
|
|
|
planner.axis_steps_per_mm[i] = tmp1[i < COUNT(tmp1) ? i : COUNT(tmp1) - 1];
|
|
|
|
planner.max_feedrate_mm_s[i] = tmp2[i < COUNT(tmp2) ? i : COUNT(tmp2) - 1];
|
|
|
|
planner.max_acceleration_mm_per_s2[i] = tmp3[i < COUNT(tmp3) ? i : COUNT(tmp3) - 1];
|
2015-01-28 09:08:48 +00:00
|
|
|
}
|
|
|
|
|
2016-04-28 01:06:32 +00:00
|
|
|
planner.acceleration = DEFAULT_ACCELERATION;
|
|
|
|
planner.retract_acceleration = DEFAULT_RETRACT_ACCELERATION;
|
|
|
|
planner.travel_acceleration = DEFAULT_TRAVEL_ACCELERATION;
|
2016-07-16 01:49:34 +00:00
|
|
|
planner.min_feedrate_mm_s = DEFAULT_MINIMUMFEEDRATE;
|
2016-04-28 01:06:32 +00:00
|
|
|
planner.min_segment_time = DEFAULT_MINSEGMENTTIME;
|
2016-07-16 01:49:34 +00:00
|
|
|
planner.min_travel_feedrate_mm_s = DEFAULT_MINTRAVELFEEDRATE;
|
2016-10-02 09:37:13 +00:00
|
|
|
planner.max_jerk[X_AXIS] = DEFAULT_XJERK;
|
|
|
|
planner.max_jerk[Y_AXIS] = DEFAULT_YJERK;
|
|
|
|
planner.max_jerk[Z_AXIS] = DEFAULT_ZJERK;
|
|
|
|
planner.max_jerk[E_AXIS] = DEFAULT_EJERK;
|
2015-03-21 23:30:02 +00:00
|
|
|
home_offset[X_AXIS] = home_offset[Y_AXIS] = home_offset[Z_AXIS] = 0;
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:39:23 +00:00
|
|
|
#if HOTENDS > 1
|
|
|
|
constexpr float tmp4[XYZ][HOTENDS] = {
|
|
|
|
HOTEND_OFFSET_X,
|
|
|
|
HOTEND_OFFSET_Y
|
|
|
|
#ifdef HOTEND_OFFSET_Z
|
|
|
|
, HOTEND_OFFSET_Z
|
|
|
|
#else
|
|
|
|
, { 0 }
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
static_assert(
|
|
|
|
tmp4[X_AXIS][0] == 0 && tmp4[Y_AXIS][0] == 0 && tmp4[Z_AXIS][0] == 0,
|
|
|
|
"Offsets for the first hotend must be 0.0."
|
|
|
|
);
|
|
|
|
LOOP_XYZ(i) HOTEND_LOOP() hotend_offset[i][e] = tmp4[i][e];
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
2016-05-24 20:53:15 +00:00
|
|
|
mbl.reset();
|
2015-03-26 06:06:33 +00:00
|
|
|
#endif
|
|
|
|
|
2016-06-15 01:05:20 +00:00
|
|
|
#if HAS_BED_PROBE
|
2015-05-27 00:47:04 +00:00
|
|
|
zprobe_zoffset = Z_PROBE_OFFSET_FROM_EXTRUDER;
|
2015-03-26 06:06:33 +00:00
|
|
|
#endif
|
2015-03-15 22:18:11 +00:00
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(DELTA)
|
2016-10-09 18:32:30 +00:00
|
|
|
const float adj[ABC] = DELTA_ENDSTOP_ADJ;
|
|
|
|
endstop_adj[A_AXIS] = adj[A_AXIS];
|
|
|
|
endstop_adj[B_AXIS] = adj[B_AXIS];
|
|
|
|
endstop_adj[C_AXIS] = adj[C_AXIS];
|
2015-01-28 09:08:48 +00:00
|
|
|
delta_radius = DELTA_RADIUS;
|
|
|
|
delta_diagonal_rod = DELTA_DIAGONAL_ROD;
|
|
|
|
delta_segments_per_second = DELTA_SEGMENTS_PER_SECOND;
|
2016-03-19 12:43:50 +00:00
|
|
|
delta_diagonal_rod_trim_tower_1 = DELTA_DIAGONAL_ROD_TRIM_TOWER_1;
|
|
|
|
delta_diagonal_rod_trim_tower_2 = DELTA_DIAGONAL_ROD_TRIM_TOWER_2;
|
|
|
|
delta_diagonal_rod_trim_tower_3 = DELTA_DIAGONAL_ROD_TRIM_TOWER_3;
|
2015-07-31 05:31:45 +00:00
|
|
|
#elif ENABLED(Z_DUAL_ENDSTOPS)
|
2015-03-24 17:06:44 +00:00
|
|
|
z_endstop_adj = 0;
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(ULTIPANEL)
|
2016-10-27 07:40:37 +00:00
|
|
|
lcd_preheat_hotend_temp[0] = PREHEAT_1_TEMP_HOTEND;
|
|
|
|
lcd_preheat_hotend_temp[1] = PREHEAT_2_TEMP_HOTEND;
|
|
|
|
lcd_preheat_bed_temp[0] = PREHEAT_1_TEMP_BED;
|
|
|
|
lcd_preheat_bed_temp[1] = PREHEAT_2_TEMP_BED;
|
|
|
|
lcd_preheat_fan_speed[0] = PREHEAT_1_FAN_SPEED;
|
|
|
|
lcd_preheat_fan_speed[1] = PREHEAT_2_FAN_SPEED;
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
|
|
|
|
2016-05-31 18:47:02 +00:00
|
|
|
#if HAS_LCD_CONTRAST
|
2015-01-28 09:08:48 +00:00
|
|
|
lcd_contrast = DEFAULT_LCD_CONTRAST;
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(PIDTEMP)
|
2016-07-13 13:11:23 +00:00
|
|
|
#if ENABLED(PID_PARAMS_PER_HOTEND) && HOTENDS > 1
|
2016-07-11 18:48:15 +00:00
|
|
|
HOTEND_LOOP()
|
2015-01-28 09:08:48 +00:00
|
|
|
#else
|
2015-10-13 10:56:07 +00:00
|
|
|
int e = 0; UNUSED(e); // only need to write once
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
PID_PARAM(Kp, e) = DEFAULT_Kp;
|
|
|
|
PID_PARAM(Ki, e) = scalePID_i(DEFAULT_Ki);
|
|
|
|
PID_PARAM(Kd, e) = scalePID_d(DEFAULT_Kd);
|
2016-08-01 00:49:34 +00:00
|
|
|
#if ENABLED(PID_EXTRUSION_SCALING)
|
2015-01-28 09:08:48 +00:00
|
|
|
PID_PARAM(Kc, e) = DEFAULT_Kc;
|
|
|
|
#endif
|
|
|
|
}
|
2016-08-01 00:49:34 +00:00
|
|
|
#if ENABLED(PID_EXTRUSION_SCALING)
|
2015-08-31 02:04:30 +00:00
|
|
|
lpq_len = 20; // default last-position-queue size
|
|
|
|
#endif
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif // PIDTEMP
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(PIDTEMPBED)
|
2016-04-29 01:18:13 +00:00
|
|
|
thermalManager.bedKp = DEFAULT_bedKp;
|
|
|
|
thermalManager.bedKi = scalePID_i(DEFAULT_bedKi);
|
|
|
|
thermalManager.bedKd = scalePID_d(DEFAULT_bedKd);
|
2015-04-03 23:38:05 +00:00
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if ENABLED(FWRETRACT)
|
2015-01-28 09:08:48 +00:00
|
|
|
autoretract_enabled = false;
|
|
|
|
retract_length = RETRACT_LENGTH;
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
retract_length_swap = RETRACT_LENGTH_SWAP;
|
|
|
|
#endif
|
2016-06-22 10:27:31 +00:00
|
|
|
retract_feedrate_mm_s = RETRACT_FEEDRATE;
|
2015-01-28 09:08:48 +00:00
|
|
|
retract_zlift = RETRACT_ZLIFT;
|
|
|
|
retract_recover_length = RETRACT_RECOVER_LENGTH;
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
retract_recover_length_swap = RETRACT_RECOVER_LENGTH_SWAP;
|
|
|
|
#endif
|
2016-07-16 01:49:34 +00:00
|
|
|
retract_recover_feedrate_mm_s = RETRACT_RECOVER_FEEDRATE;
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
volumetric_enabled = false;
|
2015-10-03 06:08:58 +00:00
|
|
|
for (uint8_t q = 0; q < COUNT(filament_size); q++)
|
2015-07-24 01:08:06 +00:00
|
|
|
filament_size[q] = DEFAULT_NOMINAL_FILAMENT_DIA;
|
2016-06-30 01:19:26 +00:00
|
|
|
|
2016-07-14 23:12:20 +00:00
|
|
|
endstops.enable_globally(
|
|
|
|
#if ENABLED(ENDSTOPS_ALWAYS_ON_DEFAULT)
|
|
|
|
(true)
|
|
|
|
#else
|
|
|
|
(false)
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
2016-06-30 01:19:26 +00:00
|
|
|
Config_Postprocess();
|
2015-01-28 09:08:48 +00:00
|
|
|
|
|
|
|
SERIAL_ECHO_START;
|
|
|
|
SERIAL_ECHOLNPGM("Hardcoded Default Settings Loaded");
|
|
|
|
}
|
|
|
|
|
2015-07-31 05:31:45 +00:00
|
|
|
#if DISABLED(DISABLE_M503)
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#define CONFIG_ECHO_START do{ if (!forReplay) SERIAL_ECHO_START; }while(0)
|
2015-04-27 01:44:01 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
/**
|
|
|
|
* M503 - Print Configuration
|
|
|
|
*/
|
|
|
|
void Config_PrintSettings(bool forReplay) {
|
|
|
|
// Always have this function, even with EEPROM_SETTINGS disabled, the current values will be shown
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:39:23 +00:00
|
|
|
if (!forReplay) {
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOLNPGM("Steps per unit:");
|
2016-10-28 23:39:23 +00:00
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M92 X", planner.axis_steps_per_mm[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", planner.axis_steps_per_mm[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", planner.axis_steps_per_mm[Z_AXIS]);
|
2016-12-12 01:37:29 +00:00
|
|
|
#if DISABLED(DISTINCT_E_FACTORS)
|
2016-12-04 04:02:27 +00:00
|
|
|
SERIAL_ECHOPAIR(" E", planner.axis_steps_per_mm[E_AXIS]);
|
|
|
|
#endif
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_EOL;
|
2016-12-04 04:02:27 +00:00
|
|
|
#if ENABLED(DISTINCT_E_FACTORS)
|
|
|
|
for (uint8_t i = 0; i < E_STEPPERS; i++) {
|
|
|
|
SERIAL_ECHOPAIR(" M92 T", (int)i);
|
|
|
|
SERIAL_ECHOLNPAIR(" E", planner.axis_steps_per_mm[E_AXIS + i]);
|
|
|
|
}
|
|
|
|
#endif
|
2016-10-28 23:55:42 +00:00
|
|
|
|
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:39:23 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
if (!forReplay) {
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOLNPGM("Maximum feedrates (mm/s):");
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M203 X", planner.max_feedrate_mm_s[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", planner.max_feedrate_mm_s[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", planner.max_feedrate_mm_s[Z_AXIS]);
|
2016-12-12 01:37:29 +00:00
|
|
|
#if DISABLED(DISTINCT_E_FACTORS)
|
2016-12-04 04:02:27 +00:00
|
|
|
SERIAL_ECHOPAIR(" E", planner.max_feedrate_mm_s[E_AXIS]);
|
|
|
|
#endif
|
2015-04-27 01:44:01 +00:00
|
|
|
SERIAL_EOL;
|
2016-12-04 04:02:27 +00:00
|
|
|
#if ENABLED(DISTINCT_E_FACTORS)
|
|
|
|
for (uint8_t i = 0; i < E_STEPPERS; i++) {
|
|
|
|
SERIAL_ECHOPAIR(" M203 T", (int)i);
|
|
|
|
SERIAL_ECHOLNPAIR(" E", planner.max_feedrate_mm_s[E_AXIS + i]);
|
|
|
|
}
|
|
|
|
#endif
|
2015-04-27 01:44:01 +00:00
|
|
|
|
|
|
|
CONFIG_ECHO_START;
|
2015-01-28 09:08:48 +00:00
|
|
|
if (!forReplay) {
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOLNPGM("Maximum Acceleration (mm/s2):");
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2015-01-28 09:08:48 +00:00
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M201 X", planner.max_acceleration_mm_per_s2[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", planner.max_acceleration_mm_per_s2[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", planner.max_acceleration_mm_per_s2[Z_AXIS]);
|
2016-12-12 01:37:29 +00:00
|
|
|
#if DISABLED(DISTINCT_E_FACTORS)
|
2016-12-04 04:02:27 +00:00
|
|
|
SERIAL_ECHOPAIR(" E", planner.max_acceleration_mm_per_s2[E_AXIS]);
|
|
|
|
#endif
|
2015-01-29 05:19:51 +00:00
|
|
|
SERIAL_EOL;
|
2016-12-04 04:02:27 +00:00
|
|
|
#if ENABLED(DISTINCT_E_FACTORS)
|
|
|
|
for (uint8_t i = 0; i < E_STEPPERS; i++) {
|
|
|
|
SERIAL_ECHOPAIR(" M201 T", (int)i);
|
|
|
|
SERIAL_ECHOLNPAIR(" E", planner.max_acceleration_mm_per_s2[E_AXIS + i]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-02-17 21:05:12 +00:00
|
|
|
if (!forReplay) {
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOLNPGM("Accelerations: P=printing, R=retract and T=travel");
|
2016-02-17 21:05:12 +00:00
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M204 P", planner.acceleration);
|
|
|
|
SERIAL_ECHOPAIR(" R", planner.retract_acceleration);
|
|
|
|
SERIAL_ECHOPAIR(" T", planner.travel_acceleration);
|
2015-01-29 05:19:51 +00:00
|
|
|
SERIAL_EOL;
|
2016-10-28 23:55:42 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2015-03-24 17:06:44 +00:00
|
|
|
if (!forReplay) {
|
2016-10-28 23:55:42 +00: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)");
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2015-03-24 17:06:44 +00:00
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M205 S", planner.min_feedrate_mm_s);
|
|
|
|
SERIAL_ECHOPAIR(" T", planner.min_travel_feedrate_mm_s);
|
|
|
|
SERIAL_ECHOPAIR(" B", planner.min_segment_time);
|
|
|
|
SERIAL_ECHOPAIR(" X", planner.max_jerk[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", planner.max_jerk[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", planner.max_jerk[Z_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" E", planner.max_jerk[E_AXIS]);
|
2015-10-03 06:08:58 +00:00
|
|
|
SERIAL_EOL;
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOLNPGM("Home offset (mm)");
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M206 X", home_offset[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", home_offset[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", home_offset[Z_AXIS]);
|
2015-04-27 01:44:01 +00:00
|
|
|
SERIAL_EOL;
|
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#if HOTENDS > 1
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Hotend offsets (mm)");
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
}
|
|
|
|
for (uint8_t e = 1; e < HOTENDS; e++) {
|
|
|
|
SERIAL_ECHOPAIR(" M218 T", (int)e);
|
2016-12-03 16:17:35 +00:00
|
|
|
SERIAL_ECHOPAIR(" X", hotend_offset[X_AXIS][e]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", hotend_offset[Y_AXIS][e]);
|
2016-10-28 23:55:42 +00:00
|
|
|
#if ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_EXTRUDER)
|
2016-12-03 16:17:35 +00:00
|
|
|
SERIAL_ECHOPAIR(" Z", hotend_offset[Z_AXIS][e]);
|
2015-08-31 02:04:30 +00:00
|
|
|
#endif
|
2015-04-27 01:44:01 +00:00
|
|
|
SERIAL_EOL;
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
#endif
|
2015-04-27 01:44:01 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Mesh bed leveling:");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M420 S", mbl.has_mesh() ? 1 : 0);
|
|
|
|
SERIAL_ECHOPAIR(" X", MESH_NUM_X_POINTS);
|
|
|
|
SERIAL_ECHOPAIR(" Y", MESH_NUM_Y_POINTS);
|
2015-04-03 23:38:05 +00:00
|
|
|
SERIAL_EOL;
|
2016-10-28 23:55:42 +00:00
|
|
|
for (uint8_t py = 1; py <= MESH_NUM_Y_POINTS; py++) {
|
|
|
|
for (uint8_t px = 1; px <= MESH_NUM_X_POINTS; px++) {
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" G29 S3 X", (int)px);
|
|
|
|
SERIAL_ECHOPAIR(" Y", (int)py);
|
|
|
|
SERIAL_ECHOPGM(" Z");
|
|
|
|
SERIAL_PROTOCOL_F(mbl.z_values[py-1][px-1], 5);
|
|
|
|
SERIAL_EOL;
|
|
|
|
}
|
|
|
|
}
|
2015-04-03 23:38:05 +00:00
|
|
|
#endif
|
2015-04-27 01:44:01 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#if ENABLED(DELTA)
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Endstop adjustment (mm):");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M666 X", endstop_adj[X_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Y", endstop_adj[Y_AXIS]);
|
|
|
|
SERIAL_ECHOPAIR(" Z", endstop_adj[Z_AXIS]);
|
|
|
|
SERIAL_EOL;
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Delta settings: L=diagonal_rod, R=radius, S=segments_per_second, ABC=diagonal_rod_trim_tower_[123]");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M665 L", delta_diagonal_rod);
|
|
|
|
SERIAL_ECHOPAIR(" R", delta_radius);
|
|
|
|
SERIAL_ECHOPAIR(" S", delta_segments_per_second);
|
|
|
|
SERIAL_ECHOPAIR(" A", delta_diagonal_rod_trim_tower_1);
|
|
|
|
SERIAL_ECHOPAIR(" B", delta_diagonal_rod_trim_tower_2);
|
|
|
|
SERIAL_ECHOPAIR(" C", delta_diagonal_rod_trim_tower_3);
|
|
|
|
SERIAL_EOL;
|
|
|
|
#elif ENABLED(Z_DUAL_ENDSTOPS)
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Z2 Endstop adjustment (mm):");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M666 Z", z_endstop_adj);
|
|
|
|
SERIAL_EOL;
|
|
|
|
#endif // DELTA
|
2015-04-27 01:44:01 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#if ENABLED(ULTIPANEL)
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Material heatup parameters:");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
2016-10-27 07:40:37 +00:00
|
|
|
for (uint8_t i = 0; i < COUNT(lcd_preheat_hotend_temp); i++) {
|
|
|
|
SERIAL_ECHOPAIR(" M145 S", (int)i);
|
|
|
|
SERIAL_ECHOPAIR(" H", lcd_preheat_hotend_temp[i]);
|
|
|
|
SERIAL_ECHOPAIR(" B", lcd_preheat_bed_temp[i]);
|
|
|
|
SERIAL_ECHOPAIR(" F", lcd_preheat_fan_speed[i]);
|
|
|
|
SERIAL_EOL;
|
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
#endif // ULTIPANEL
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#if HAS_PID_HEATING
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("PID settings:");
|
|
|
|
}
|
|
|
|
#if ENABLED(PIDTEMP)
|
|
|
|
#if HOTENDS > 1
|
|
|
|
if (forReplay) {
|
|
|
|
HOTEND_LOOP() {
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" M301 E", e);
|
|
|
|
SERIAL_ECHOPAIR(" P", PID_PARAM(Kp, e));
|
|
|
|
SERIAL_ECHOPAIR(" I", unscalePID_i(PID_PARAM(Ki, e)));
|
|
|
|
SERIAL_ECHOPAIR(" D", unscalePID_d(PID_PARAM(Kd, e)));
|
|
|
|
#if ENABLED(PID_EXTRUSION_SCALING)
|
|
|
|
SERIAL_ECHOPAIR(" C", PID_PARAM(Kc, e));
|
|
|
|
if (e == 0) SERIAL_ECHOPAIR(" L", lpq_len);
|
|
|
|
#endif
|
|
|
|
SERIAL_EOL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif // HOTENDS > 1
|
|
|
|
// !forReplay || HOTENDS == 1
|
|
|
|
{
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" M301 P", PID_PARAM(Kp, 0)); // for compatibility with hosts, only echo values for E0
|
|
|
|
SERIAL_ECHOPAIR(" I", unscalePID_i(PID_PARAM(Ki, 0)));
|
|
|
|
SERIAL_ECHOPAIR(" D", unscalePID_d(PID_PARAM(Kd, 0)));
|
|
|
|
#if ENABLED(PID_EXTRUSION_SCALING)
|
|
|
|
SERIAL_ECHOPAIR(" C", PID_PARAM(Kc, 0));
|
|
|
|
SERIAL_ECHOPAIR(" L", lpq_len);
|
|
|
|
#endif
|
|
|
|
SERIAL_EOL;
|
|
|
|
}
|
|
|
|
#endif // PIDTEMP
|
|
|
|
|
|
|
|
#if ENABLED(PIDTEMPBED)
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" M304 P", thermalManager.bedKp);
|
|
|
|
SERIAL_ECHOPAIR(" I", unscalePID_i(thermalManager.bedKi));
|
|
|
|
SERIAL_ECHOPAIR(" D", unscalePID_d(thermalManager.bedKd));
|
|
|
|
SERIAL_EOL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // PIDTEMP || PIDTEMPBED
|
|
|
|
|
|
|
|
#if HAS_LCD_CONTRAST
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("LCD Contrast:");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M250 C", lcd_contrast);
|
|
|
|
SERIAL_EOL;
|
2015-04-27 01:44:01 +00:00
|
|
|
#endif
|
2015-01-28 09:08:48 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#if ENABLED(FWRETRACT)
|
2012-11-07 22:16:43 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Retract: S=Length (mm) F:Speed (mm/m) Z: ZLift (mm)");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M207 S", retract_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
SERIAL_ECHOPAIR(" W", retract_length_swap);
|
|
|
|
#endif
|
|
|
|
SERIAL_ECHOPAIR(" F", MMS_TO_MMM(retract_feedrate_mm_s));
|
|
|
|
SERIAL_ECHOPAIR(" Z", retract_zlift);
|
|
|
|
SERIAL_EOL;
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Recover: S=Extra length (mm) F:Speed (mm/m)");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M208 S", retract_recover_length);
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
SERIAL_ECHOPAIR(" W", retract_recover_length_swap);
|
|
|
|
#endif
|
|
|
|
SERIAL_ECHOPAIR(" F", MMS_TO_MMM(retract_recover_feedrate_mm_s));
|
|
|
|
SERIAL_EOL;
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
if (!forReplay) {
|
|
|
|
SERIAL_ECHOLNPGM("Auto-Retract: S=0 to disable, 1 to interpret extrude-only moves as retracts or recoveries");
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPAIR(" M209 S", autoretract_enabled ? 1 : 0);
|
2015-07-24 00:20:02 +00:00
|
|
|
SERIAL_EOL;
|
2015-04-27 01:44:01 +00:00
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
#endif // FWRETRACT
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Volumetric extrusion M200
|
|
|
|
*/
|
|
|
|
if (!forReplay) {
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOPGM("Filament settings:");
|
|
|
|
if (volumetric_enabled)
|
|
|
|
SERIAL_EOL;
|
|
|
|
else
|
|
|
|
SERIAL_ECHOLNPGM(" Disabled");
|
|
|
|
}
|
|
|
|
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M200 D", filament_size[0]);
|
2015-01-29 05:19:51 +00:00
|
|
|
SERIAL_EOL;
|
2016-10-28 23:55:42 +00:00
|
|
|
#if EXTRUDERS > 1
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M200 T1 D", filament_size[1]);
|
2015-01-29 05:19:51 +00:00
|
|
|
SERIAL_EOL;
|
2016-10-28 23:55:42 +00:00
|
|
|
#if EXTRUDERS > 2
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOPAIR(" M200 T2 D", filament_size[2]);
|
2015-01-29 05:19:51 +00:00
|
|
|
SERIAL_EOL;
|
2016-10-28 23:55:42 +00:00
|
|
|
#if EXTRUDERS > 3
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" M200 T3 D", filament_size[3]);
|
|
|
|
SERIAL_EOL;
|
|
|
|
#endif
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-10-28 23:55:42 +00:00
|
|
|
if (!volumetric_enabled) {
|
2015-04-27 01:44:01 +00:00
|
|
|
CONFIG_ECHO_START;
|
2016-10-28 23:55:42 +00:00
|
|
|
SERIAL_ECHOLNPGM(" M200 D0");
|
2016-06-15 01:05:20 +00:00
|
|
|
}
|
2016-10-28 23:55:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Auto Bed Leveling
|
|
|
|
*/
|
|
|
|
#if HAS_BED_PROBE
|
|
|
|
if (!forReplay) {
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOLNPGM("Z-Probe Offset (mm):");
|
|
|
|
}
|
|
|
|
CONFIG_ECHO_START;
|
|
|
|
SERIAL_ECHOPAIR(" M851 Z", zprobe_zoffset);
|
|
|
|
SERIAL_EOL;
|
|
|
|
#endif
|
|
|
|
}
|
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 14:05:11 +00:00
|
|
|
|
2015-01-28 09:08:48 +00:00
|
|
|
#endif // !DISABLE_M503
|