Merge pull request #4570 from thinkyhead/rc_proper_delta_calibration
Make DELTA_CALIBRATION_MENU more universal
This commit is contained in:
commit
9afa060ed6
|
@ -349,6 +349,7 @@ script:
|
||||||
# Delta Config (generic)
|
# Delta Config (generic)
|
||||||
- restore_configs
|
- restore_configs
|
||||||
- use_example_configs delta/generic
|
- use_example_configs delta/generic
|
||||||
|
- opt_enable REPRAP_DISCOUNT_SMART_CONTROLLER DELTA_CALIBRATION_MENU
|
||||||
- build_marlin
|
- build_marlin
|
||||||
#
|
#
|
||||||
# Delta Config (generic) + ABL + ALLEN_KEY
|
# Delta Config (generic) + ABL + ALLEN_KEY
|
||||||
|
|
|
@ -1260,14 +1260,25 @@ void kill_screen(const char* lcd_msg) {
|
||||||
|
|
||||||
#if ENABLED(DELTA_CALIBRATION_MENU)
|
#if ENABLED(DELTA_CALIBRATION_MENU)
|
||||||
|
|
||||||
|
static void _goto_tower_pos(const float &a) {
|
||||||
|
char cmd[20];
|
||||||
|
sprintf_P(cmd, PSTR("G1 X%i Y%i"), int(-(DELTA_PRINTABLE_RADIUS) * sin(a)), int((DELTA_PRINTABLE_RADIUS) * cos(a)));
|
||||||
|
enqueue_and_echo_commands_P(PSTR("G1 F8000 Z4\nG1 F4000"));
|
||||||
|
enqueue_and_echo_command(cmd);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void _goto_tower_x() { _goto_tower_pos(RADIANS(120)); }
|
||||||
|
static void _goto_tower_y() { _goto_tower_pos(RADIANS(240)); }
|
||||||
|
static void _goto_tower_z() { _goto_tower_pos(0); }
|
||||||
|
|
||||||
static void lcd_delta_calibrate_menu() {
|
static void lcd_delta_calibrate_menu() {
|
||||||
START_MENU();
|
START_MENU();
|
||||||
MENU_ITEM(back, MSG_MAIN);
|
MENU_ITEM(back, MSG_MAIN);
|
||||||
MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
|
MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
|
||||||
MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_X, PSTR("G0 F8000 X-77.94 Y-45 Z0"));
|
MENU_ITEM(function, MSG_DELTA_CALIBRATE_X, _goto_tower_x);
|
||||||
MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Y, PSTR("G0 F8000 X77.94 Y-45 Z0"));
|
MENU_ITEM(function, MSG_DELTA_CALIBRATE_Y, _goto_tower_y);
|
||||||
MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Z, PSTR("G0 F8000 X0 Y90 Z0"));
|
MENU_ITEM(function, MSG_DELTA_CALIBRATE_Z, _goto_tower_z);
|
||||||
MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_CENTER, PSTR("G0 F8000 X0 Y0 Z0"));
|
MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_CENTER, PSTR("G1 F8000 Z4\nG1 F4000 X0 Y0"));
|
||||||
END_MENU();
|
END_MENU();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2539,7 +2550,6 @@ void lcd_update() {
|
||||||
|
|
||||||
bool sd_status = IS_SD_INSERTED;
|
bool sd_status = IS_SD_INSERTED;
|
||||||
if (sd_status != lcd_sd_status && lcd_detected()) {
|
if (sd_status != lcd_sd_status && lcd_detected()) {
|
||||||
lcd_sd_status = sd_status;
|
|
||||||
|
|
||||||
if (sd_status) {
|
if (sd_status) {
|
||||||
card.initsd();
|
card.initsd();
|
||||||
|
@ -2550,6 +2560,7 @@ void lcd_update() {
|
||||||
if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_REMOVED);
|
if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_REMOVED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lcd_sd_status = sd_status;
|
||||||
lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
|
lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
|
||||||
lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
|
lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
|
||||||
#if ENABLED(LCD_PROGRESS_BAR)
|
#if ENABLED(LCD_PROGRESS_BAR)
|
||||||
|
|
Loading…
Reference in a new issue