Scott Lahteine
6 years ago
2 changed files with 385 additions and 395 deletions
@ -0,0 +1,371 @@ |
|||
/**
|
|||
* 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/>.
|
|||
* |
|||
*/ |
|||
|
|||
//
|
|||
// Configuration Menu
|
|||
//
|
|||
|
|||
#include "../../inc/MarlinConfigPre.h" |
|||
|
|||
#if HAS_LCD_MENU |
|||
|
|||
#include "menu.h" |
|||
|
|||
#include "../../module/configuration_store.h" |
|||
|
|||
#if ENABLED(FILAMENT_RUNOUT_SENSOR) |
|||
#include "../../feature/runout.h" |
|||
#endif |
|||
|
|||
void menu_advanced_settings(); |
|||
void menu_delta_calibrate(); |
|||
|
|||
#if HAS_LCD_CONTRAST |
|||
void lcd_callback_set_contrast() { set_lcd_contrast(lcd_contrast); } |
|||
#endif |
|||
|
|||
static void lcd_factory_settings() { |
|||
settings.reset(); |
|||
lcd_completion_feedback(); |
|||
} |
|||
|
|||
#if ENABLED(LCD_PROGRESS_BAR_TEST) |
|||
|
|||
static void progress_bar_test() { |
|||
static int8_t bar_percent = 0; |
|||
if (use_click()) { |
|||
lcd_goto_previous_menu(); |
|||
lcd_set_custom_characters(CHARSET_MENU); |
|||
return; |
|||
} |
|||
bar_percent += (int8_t)encoderPosition; |
|||
bar_percent = constrain(bar_percent, 0, 100); |
|||
encoderPosition = 0; |
|||
lcd_implementation_drawmenu_static(0, PSTR(MSG_PROGRESS_BAR_TEST), true, true); |
|||
lcd_moveto((LCD_WIDTH) / 2 - 2, LCD_HEIGHT - 2); |
|||
lcd_put_u8str(int(bar_percent)); lcd_put_wchar('%'); |
|||
lcd_moveto(0, LCD_HEIGHT - 1); lcd_draw_progress_bar(bar_percent); |
|||
} |
|||
|
|||
void _progress_bar_test() { |
|||
lcd_goto_screen(progress_bar_test); |
|||
lcd_set_custom_characters(); |
|||
} |
|||
|
|||
#endif // LCD_PROGRESS_BAR_TEST
|
|||
|
|||
#if HAS_DEBUG_MENU |
|||
|
|||
void menu_debug() { |
|||
START_MENU(); |
|||
|
|||
MENU_BACK(MSG_MAIN); |
|||
|
|||
#if ENABLED(LCD_PROGRESS_BAR_TEST) |
|||
MENU_ITEM(submenu, MSG_PROGRESS_BAR_TEST, _progress_bar_test); |
|||
#endif |
|||
|
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if EXTRUDERS > 1 |
|||
|
|||
#include "../../module/tool_change.h" |
|||
|
|||
void menu_tool_change() { |
|||
START_MENU(); |
|||
MENU_BACK(MSG_MAIN); |
|||
#if ENABLED(SINGLENOZZLE) |
|||
MENU_ITEM_EDIT(float3, MSG_FILAMENT_SWAP_LENGTH, &toolchange_settings.swap_length, 0, 200); |
|||
MENU_MULTIPLIER_ITEM_EDIT(int4, MSG_SINGLENOZZLE_RETRACT_SPD, &toolchange_settings.retract_speed, 10, 5400); |
|||
MENU_MULTIPLIER_ITEM_EDIT(int4, MSG_SINGLENOZZLE_PRIME_SPD, &toolchange_settings.prime_speed, 10, 5400); |
|||
#endif |
|||
MENU_ITEM_EDIT(float3, MSG_TOOL_CHANGE_ZLIFT, &toolchange_settings.z_raise, 0, 10); |
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if ENABLED(DUAL_X_CARRIAGE) |
|||
|
|||
#include "../../module/motion.h" |
|||
#include "../../gcode/queue.h" |
|||
|
|||
void _recalc_IDEX_settings() { |
|||
if (active_extruder) { // For the 2nd extruder re-home so the next tool-change gets the new offsets.
|
|||
enqueue_and_echo_commands_P(PSTR("G28")); // In future, we can babystep the 2nd extruder (if active), making homing unnecessary.
|
|||
active_extruder = 0; |
|||
} |
|||
} |
|||
|
|||
void menu_IDEX() { |
|||
START_MENU(); |
|||
MENU_BACK(MSG_MAIN); |
|||
|
|||
MENU_ITEM(gcode, MSG_IDEX_MODE_AUTOPARK, PSTR("M605 S1\nG28 X\nG1 X100")); |
|||
const bool need_g28 = !(TEST(axis_known_position, Y_AXIS) && TEST(axis_known_position, Z_AXIS)); |
|||
MENU_ITEM(gcode, MSG_IDEX_MODE_DUPLICATE, need_g28 |
|||
? PSTR("M605 S1\nT0\nG28\nM605 S2 X200\nG28 X\nG1 X100") // If Y or Z is not homed, do a full G28 first
|
|||
: PSTR("M605 S1\nT0\nM605 S2 X200\nG28 X\nG1 X100") |
|||
); |
|||
//MENU_ITEM(gcode, MSG_IDEX_MODE_SCALED_COPY, need_g28
|
|||
// ? PSTR("M605 S1\nT0\nG28\nM605 S2 X200\nG28 X\nG1 X100\nM605 S3 X200") // If Y or Z is not homed, do a full G28 first
|
|||
// : PSTR("M605 S1\nT0\nM605 S2 X200\nG28 X\nG1 X100\nM605 S3 X200")
|
|||
//);
|
|||
MENU_ITEM(gcode, MSG_IDEX_MODE_FULL_CTRL, PSTR("M605 S0\nG28 X")); |
|||
MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float52, MSG_IDEX_X_OFFSET , &hotend_offset[X_AXIS][1], MIN(X2_HOME_POS, X2_MAX_POS) - 25.0, MAX(X2_HOME_POS, X2_MAX_POS) + 25.0, _recalc_IDEX_settings); |
|||
MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float52, MSG_IDEX_Y_OFFSET , &hotend_offset[Y_AXIS][1], -10.0, 10.0, _recalc_IDEX_settings); |
|||
MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float52, MSG_IDEX_Z_OFFSET , &hotend_offset[Z_AXIS][1], -10.0, 10.0, _recalc_IDEX_settings); |
|||
MENU_ITEM(gcode, MSG_IDEX_SAVE_OFFSETS, PSTR("M500")); |
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if ENABLED(BLTOUCH) |
|||
|
|||
void menu_bltouch() { |
|||
START_MENU(); |
|||
MENU_BACK(MSG_MAIN); |
|||
MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_PROBE_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET))); |
|||
MENU_ITEM(gcode, MSG_BLTOUCH_SELFTEST, PSTR("M280 P" STRINGIFY(Z_PROBE_SERVO_NR) " S" STRINGIFY(BLTOUCH_SELFTEST))); |
|||
MENU_ITEM(gcode, MSG_BLTOUCH_DEPLOY, PSTR("M280 P" STRINGIFY(Z_PROBE_SERVO_NR) " S" STRINGIFY(BLTOUCH_DEPLOY))); |
|||
MENU_ITEM(gcode, MSG_BLTOUCH_STOW, PSTR("M280 P" STRINGIFY(Z_PROBE_SERVO_NR) " S" STRINGIFY(BLTOUCH_STOW))); |
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if ENABLED(MENU_ITEM_CASE_LIGHT) |
|||
|
|||
#include "../../feature/caselight.h" |
|||
|
|||
void menu_case_light() { |
|||
START_MENU(); |
|||
MENU_BACK(MSG_MAIN); |
|||
MENU_ITEM_EDIT_CALLBACK(int8, MSG_CASE_LIGHT_BRIGHTNESS, &case_light_brightness, 0, 255, update_case_light, true); |
|||
MENU_ITEM_EDIT_CALLBACK(bool, MSG_CASE_LIGHT, (bool*)&case_light_on, update_case_light); |
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if ENABLED(FWRETRACT) |
|||
|
|||
#include "../../feature/fwretract.h" |
|||
|
|||
void menu_config_retract() { |
|||
START_MENU(); |
|||
MENU_BACK(MSG_CONTROL); |
|||
#if ENABLED(FWRETRACT_AUTORETRACT) |
|||
MENU_ITEM_EDIT_CALLBACK(bool, MSG_AUTORETRACT, &fwretract.autoretract_enabled, fwretract.refresh_autoretract); |
|||
#endif |
|||
MENU_ITEM_EDIT(float52sign, MSG_CONTROL_RETRACT, &fwretract.settings.retract_length, 0, 100); |
|||
#if EXTRUDERS > 1 |
|||
MENU_ITEM_EDIT(float52sign, MSG_CONTROL_RETRACT_SWAP, &fwretract.settings.swap_retract_length, 0, 100); |
|||
#endif |
|||
MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &fwretract.settings.retract_feedrate_mm_s, 1, 999); |
|||
MENU_ITEM_EDIT(float52sign, MSG_CONTROL_RETRACT_ZHOP, &fwretract.settings.retract_zraise, 0, 999); |
|||
MENU_ITEM_EDIT(float52sign, MSG_CONTROL_RETRACT_RECOVER, &fwretract.settings.retract_recover_length, -100, 100); |
|||
#if EXTRUDERS > 1 |
|||
MENU_ITEM_EDIT(float52sign, MSG_CONTROL_RETRACT_RECOVER_SWAP, &fwretract.settings.swap_retract_recover_length, -100, 100); |
|||
#endif |
|||
MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &fwretract.settings.retract_recover_feedrate_mm_s, 1, 999); |
|||
#if EXTRUDERS > 1 |
|||
MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVER_SWAPF, &fwretract.settings.swap_retract_recover_feedrate_mm_s, 1, 999); |
|||
#endif |
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if ENABLED(DAC_STEPPER_CURRENT) |
|||
|
|||
#include "../../feature/dac/stepper_dac.h" |
|||
|
|||
uint8_t driverPercent[XYZE]; |
|||
inline void dac_driver_getValues() { LOOP_XYZE(i) driverPercent[i] = dac_current_get_percent((AxisEnum)i); } |
|||
static void dac_driver_commit() { dac_current_set_percents(driverPercent); } |
|||
|
|||
void menu_dac() { |
|||
dac_driver_getValues(); |
|||
START_MENU(); |
|||
MENU_BACK(MSG_CONTROL); |
|||
MENU_ITEM_EDIT_CALLBACK(int8, MSG_X " " MSG_DAC_PERCENT, &driverPercent[X_AXIS], 0, 100, dac_driver_commit); |
|||
MENU_ITEM_EDIT_CALLBACK(int8, MSG_Y " " MSG_DAC_PERCENT, &driverPercent[Y_AXIS], 0, 100, dac_driver_commit); |
|||
MENU_ITEM_EDIT_CALLBACK(int8, MSG_Z " " MSG_DAC_PERCENT, &driverPercent[Z_AXIS], 0, 100, dac_driver_commit); |
|||
MENU_ITEM_EDIT_CALLBACK(int8, MSG_E " " MSG_DAC_PERCENT, &driverPercent[E_AXIS], 0, 100, dac_driver_commit); |
|||
MENU_ITEM(function, MSG_DAC_EEPROM_WRITE, dac_commit_eeprom); |
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if HAS_MOTOR_CURRENT_PWM |
|||
|
|||
#include "../../module/stepper.h" |
|||
|
|||
void menu_pwm() { |
|||
START_MENU(); |
|||
MENU_BACK(MSG_CONTROL); |
|||
#if PIN_EXISTS(MOTOR_CURRENT_PWM_XY) |
|||
MENU_ITEM_EDIT_CALLBACK(long5, MSG_X MSG_Y, &stepper.motor_current_setting[0], 100, 2000, stepper.refresh_motor_power); |
|||
#endif |
|||
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z) |
|||
MENU_ITEM_EDIT_CALLBACK(long5, MSG_Z, &stepper.motor_current_setting[1], 100, 2000, stepper.refresh_motor_power); |
|||
#endif |
|||
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E) |
|||
MENU_ITEM_EDIT_CALLBACK(long5, MSG_E, &stepper.motor_current_setting[2], 100, 2000, stepper.refresh_motor_power); |
|||
#endif |
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif |
|||
|
|||
#if DISABLED(SLIM_LCD_MENUS) |
|||
|
|||
void _menu_configuration_preheat_settings(const uint8_t material) { |
|||
#if HOTENDS > 5 |
|||
#define MINTEMP_ALL MIN(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP, HEATER_4_MINTEMP, HEATER_5_MINTEMP) |
|||
#define MAXTEMP_ALL MAX(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP, HEATER_4_MAXTEMP, HEATER_5_MAXTEMP) |
|||
#elif HOTENDS > 4 |
|||
#define MINTEMP_ALL MIN(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP, HEATER_4_MINTEMP) |
|||
#define MAXTEMP_ALL MAX(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP, HEATER_4_MAXTEMP) |
|||
#elif HOTENDS > 3 |
|||
#define MINTEMP_ALL MIN(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP) |
|||
#define MAXTEMP_ALL MAX(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP) |
|||
#elif HOTENDS > 2 |
|||
#define MINTEMP_ALL MIN(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP) |
|||
#define MAXTEMP_ALL MAX(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP) |
|||
#elif HOTENDS > 1 |
|||
#define MINTEMP_ALL MIN(HEATER_0_MINTEMP, HEATER_1_MINTEMP) |
|||
#define MAXTEMP_ALL MAX(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP) |
|||
#else |
|||
#define MINTEMP_ALL HEATER_0_MINTEMP |
|||
#define MAXTEMP_ALL HEATER_0_MAXTEMP |
|||
#endif |
|||
START_MENU(); |
|||
MENU_BACK(MSG_CONFIGURATION); |
|||
MENU_ITEM_EDIT(int8, MSG_FAN_SPEED, &lcd_preheat_fan_speed[material], 0, 255); |
|||
#if HAS_TEMP_HOTEND |
|||
MENU_ITEM_EDIT(int3, MSG_NOZZLE, &lcd_preheat_hotend_temp[material], MINTEMP_ALL, MAXTEMP_ALL - 15); |
|||
#endif |
|||
#if HAS_HEATED_BED |
|||
MENU_ITEM_EDIT(int3, MSG_BED, &lcd_preheat_bed_temp[material], BED_MINTEMP, BED_MAXTEMP - 15); |
|||
#endif |
|||
#if ENABLED(EEPROM_SETTINGS) |
|||
MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings); |
|||
#endif |
|||
END_MENU(); |
|||
} |
|||
|
|||
void menu_preheat_material1_settings() { _menu_configuration_preheat_settings(0); } |
|||
void menu_preheat_material2_settings() { _menu_configuration_preheat_settings(1); } |
|||
|
|||
#endif |
|||
|
|||
void menu_configuration() { |
|||
START_MENU(); |
|||
MENU_BACK(MSG_MAIN); |
|||
|
|||
//
|
|||
// Debug Menu when certain options are enabled
|
|||
//
|
|||
#if HAS_DEBUG_MENU |
|||
MENU_ITEM(submenu, MSG_DEBUG_MENU, menu_debug); |
|||
#endif |
|||
|
|||
MENU_ITEM(submenu, MSG_ADVANCED_SETTINGS, menu_advanced_settings); |
|||
|
|||
const bool busy = printer_busy(); |
|||
if (!busy) { |
|||
//
|
|||
// Delta Calibration
|
|||
//
|
|||
#if ENABLED(DELTA_CALIBRATION_MENU) || ENABLED(DELTA_AUTO_CALIBRATION) |
|||
MENU_ITEM(submenu, MSG_DELTA_CALIBRATE, menu_delta_calibrate); |
|||
#endif |
|||
|
|||
#if ENABLED(DUAL_X_CARRIAGE) |
|||
MENU_ITEM(submenu, MSG_IDEX_MENU, menu_IDEX); |
|||
#endif |
|||
|
|||
#if ENABLED(BLTOUCH) |
|||
MENU_ITEM(submenu, MSG_BLTOUCH, menu_bltouch); |
|||
#endif |
|||
} |
|||
|
|||
//
|
|||
// Set single nozzle filament retract and prime length
|
|||
//
|
|||
#if EXTRUDERS > 1 |
|||
MENU_ITEM(submenu, MSG_TOOL_CHANGE, menu_tool_change); |
|||
#endif |
|||
|
|||
//
|
|||
// Set Case light on/off/brightness
|
|||
//
|
|||
#if ENABLED(MENU_ITEM_CASE_LIGHT) |
|||
if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) |
|||
MENU_ITEM(submenu, MSG_CASE_LIGHT, menu_case_light); |
|||
else |
|||
MENU_ITEM_EDIT_CALLBACK(bool, MSG_CASE_LIGHT, (bool*)&case_light_on, update_case_light); |
|||
#endif |
|||
|
|||
#if HAS_LCD_CONTRAST |
|||
MENU_ITEM_EDIT_CALLBACK(int3, MSG_CONTRAST, &lcd_contrast, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX, lcd_callback_set_contrast, true); |
|||
#endif |
|||
#if ENABLED(FWRETRACT) |
|||
MENU_ITEM(submenu, MSG_RETRACT, menu_config_retract); |
|||
#endif |
|||
#if ENABLED(DAC_STEPPER_CURRENT) |
|||
MENU_ITEM(submenu, MSG_DRIVE_STRENGTH, menu_dac); |
|||
#endif |
|||
#if HAS_MOTOR_CURRENT_PWM |
|||
MENU_ITEM(submenu, MSG_DRIVE_STRENGTH, menu_pwm); |
|||
#endif |
|||
|
|||
#if ENABLED(FILAMENT_RUNOUT_SENSOR) |
|||
MENU_ITEM_EDIT(bool, MSG_RUNOUT_SENSOR_ENABLE, &runout.enabled); |
|||
#endif |
|||
|
|||
#if DISABLED(SLIM_LCD_MENUS) |
|||
// Preheat configurations
|
|||
MENU_ITEM(submenu, MSG_PREHEAT_1_SETTINGS, menu_preheat_material1_settings); |
|||
MENU_ITEM(submenu, MSG_PREHEAT_2_SETTINGS, menu_preheat_material2_settings); |
|||
#endif |
|||
|
|||
#if ENABLED(EEPROM_SETTINGS) |
|||
MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings); |
|||
if (!busy) |
|||
MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings); |
|||
#endif |
|||
|
|||
if (!busy) |
|||
MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings); |
|||
|
|||
END_MENU(); |
|||
} |
|||
|
|||
#endif // HAS_LCD_MENU
|
Loading…
Reference in new issue