|
@ -111,7 +111,7 @@ void DGUSScreenHandler::DGUSLCD_SendPrintTimeToDisplay_MKS(DGUS_VP_Variable &var |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::DGUSLCD_SetUint8(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::DGUSLCD_SetUint8(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
if (var.memadr) { |
|
|
if (var.memadr) { |
|
|
uint16_t value = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t value = swap16(*(uint16_t*)val_ptr); |
|
|
DEBUG_ECHOLNPAIR("FAN value get:", value); |
|
|
DEBUG_ECHOLNPAIR("FAN value get:", value); |
|
|
*(uint8_t*)var.memadr = map(constrain(value, 0, 255), 0, 255, 0, 255); |
|
|
*(uint8_t*)var.memadr = map(constrain(value, 0, 255), 0, 255, 0, 255); |
|
|
DEBUG_ECHOLNPAIR("FAN value change:", *(uint8_t*)var.memadr); |
|
|
DEBUG_ECHOLNPAIR("FAN value change:", *(uint8_t*)var.memadr); |
|
@ -314,7 +314,7 @@ void DGUSScreenHandler::ScreenChangeHook(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::ScreenBackChange(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::ScreenBackChange(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t target = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t target = swap16(*(uint16_t *)val_ptr); |
|
|
DEBUG_ECHOLNPAIR(" back = 0x%x", target); |
|
|
DEBUG_ECHOLNPAIR(" back = 0x%x", target); |
|
|
switch (target) { |
|
|
switch (target) { |
|
|
} |
|
|
} |
|
@ -330,7 +330,7 @@ void DGUSScreenHandler::ZoffsetConfirm(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::GetTurnOffCtrl(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::GetTurnOffCtrl(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("ctrl turn off\n"); |
|
|
DEBUG_ECHOLNPGM("ctrl turn off\n"); |
|
|
uint16_t value = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t value = swap16(*(uint16_t *)val_ptr); |
|
|
switch (value) { |
|
|
switch (value) { |
|
|
case 0 ... 1: DGUSAutoTurnOff = (bool)value; break; |
|
|
case 0 ... 1: DGUSAutoTurnOff = (bool)value; break; |
|
|
default: break; |
|
|
default: break; |
|
@ -339,7 +339,7 @@ void DGUSScreenHandler::GetTurnOffCtrl(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::GetMinExtrudeTemp(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::GetMinExtrudeTemp(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("MinExtrudeTempChange DistanceChange"); |
|
|
DEBUG_ECHOLNPGM("MinExtrudeTempChange DistanceChange"); |
|
|
uint16_t value = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t value = swap16(*(uint16_t *)val_ptr); |
|
|
thermalManager.extrude_min_temp = value; |
|
|
thermalManager.extrude_min_temp = value; |
|
|
min_ex_temp = value; |
|
|
min_ex_temp = value; |
|
|
settings.save(); |
|
|
settings.save(); |
|
@ -347,7 +347,7 @@ void DGUSScreenHandler::GetMinExtrudeTemp(DGUS_VP_Variable &var, void *val_ptr) |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::GetZoffsetDistance(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::GetZoffsetDistance(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("Zoffset DistanceChange"); |
|
|
DEBUG_ECHOLNPGM("Zoffset DistanceChange"); |
|
|
uint16_t value = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t value = swap16(*(uint16_t *)val_ptr); |
|
|
float val_distance = 0; |
|
|
float val_distance = 0; |
|
|
switch (value) { |
|
|
switch (value) { |
|
|
case 0: val_distance = 0.01; break; |
|
|
case 0: val_distance = 0.01; break; |
|
@ -365,7 +365,7 @@ void DGUSScreenHandler::GetManualMovestep(DGUS_VP_Variable &var, void *val_ptr) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::EEPROM_CTRL(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::EEPROM_CTRL(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t eep_flag = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t eep_flag = swap16(*(uint16_t *)val_ptr); |
|
|
switch (eep_flag) { |
|
|
switch (eep_flag) { |
|
|
case 0: |
|
|
case 0: |
|
|
settings.save(); |
|
|
settings.save(); |
|
@ -383,7 +383,7 @@ void DGUSScreenHandler::EEPROM_CTRL(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::Z_offset_select(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::Z_offset_select(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t z_value = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t z_value = swap16(*(uint16_t *)val_ptr); |
|
|
switch (z_value) { |
|
|
switch (z_value) { |
|
|
case 0: Z_distance = 0.01; break; |
|
|
case 0: Z_distance = 0.01; break; |
|
|
case 1: Z_distance = 0.1; break; |
|
|
case 1: Z_distance = 0.1; break; |
|
@ -410,7 +410,7 @@ void DGUSScreenHandler::GetOffsetValue(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::LanguageChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::LanguageChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t lag_flag = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t lag_flag = swap16(*(uint16_t *)val_ptr); |
|
|
switch (lag_flag) { |
|
|
switch (lag_flag) { |
|
|
case MKS_SimpleChinese: |
|
|
case MKS_SimpleChinese: |
|
|
DGUS_LanguageDisplay(MKS_SimpleChinese); |
|
|
DGUS_LanguageDisplay(MKS_SimpleChinese); |
|
@ -435,7 +435,7 @@ void DGUSScreenHandler::LanguageChange_MKS(DGUS_VP_Variable &var, void *val_ptr) |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::Level_Ctrl_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::Level_Ctrl_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t lev_but = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t lev_but = swap16(*(uint16_t *)val_ptr); |
|
|
#if ENABLED(MESH_BED_LEVELING) |
|
|
#if ENABLED(MESH_BED_LEVELING) |
|
|
auto cs = getCurrentScreen(); |
|
|
auto cs = getCurrentScreen(); |
|
|
#endif |
|
|
#endif |
|
@ -482,7 +482,7 @@ void DGUSScreenHandler::Level_Ctrl_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::MeshLevelDistanceConfig(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::MeshLevelDistanceConfig(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t mesh_dist = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t mesh_dist = swap16(*(uint16_t *)val_ptr); |
|
|
switch (mesh_dist) { |
|
|
switch (mesh_dist) { |
|
|
case 0: mesh_adj_distance = 0.01; break; |
|
|
case 0: mesh_adj_distance = 0.01; break; |
|
|
case 1: mesh_adj_distance = 0.1; break; |
|
|
case 1: mesh_adj_distance = 0.1; break; |
|
@ -493,7 +493,7 @@ void DGUSScreenHandler::MeshLevelDistanceConfig(DGUS_VP_Variable &var, void *val |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::MeshLevel(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::MeshLevel(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
#if ENABLED(MESH_BED_LEVELING) |
|
|
#if ENABLED(MESH_BED_LEVELING) |
|
|
uint16_t mesh_value = swap16(*(uint16_t *)val_ptr); |
|
|
const uint16_t mesh_value = swap16(*(uint16_t *)val_ptr); |
|
|
// static uint8_t a_first_level = 1;
|
|
|
// static uint8_t a_first_level = 1;
|
|
|
char cmd_buf[30]; |
|
|
char cmd_buf[30]; |
|
|
float offset = mesh_adj_distance; |
|
|
float offset = mesh_adj_distance; |
|
@ -586,20 +586,16 @@ void DGUSScreenHandler::MeshLevel(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::LCD_BLK_Adjust(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::LCD_BLK_Adjust(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
|
|
|
const uint16_t lcd_value = swap16(*(uint16_t *)val_ptr); |
|
|
|
|
|
|
|
|
uint16_t lcd_value = swap16(*(uint16_t *)val_ptr); |
|
|
lcd_default_light = constrain(lcd_value, 10, 100); |
|
|
|
|
|
|
|
|
if (lcd_value > 100) lcd_value = 100; |
|
|
const uint16_t lcd_data[2] = { lcd_default_light, lcd_default_light }; |
|
|
else if (lcd_value < 10) lcd_value = 10; |
|
|
|
|
|
|
|
|
|
|
|
lcd_default_light = lcd_value; |
|
|
|
|
|
|
|
|
|
|
|
const uint16_t lcd_data[2] = {lcd_default_light, lcd_default_light}; |
|
|
|
|
|
dgusdisplay.WriteVariable(0x0082, &lcd_data, 5, true); |
|
|
dgusdisplay.WriteVariable(0x0082, &lcd_data, 5, true); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::ManualAssistLeveling(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::ManualAssistLeveling(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
int16_t point_value = swap16(*(uint16_t *)val_ptr); |
|
|
const int16_t point_value = swap16(*(uint16_t *)val_ptr); |
|
|
|
|
|
|
|
|
int16_t level_x_pos, level_y_pos; |
|
|
int16_t level_x_pos, level_y_pos; |
|
|
char buf_level[32] = {0}; |
|
|
char buf_level[32] = {0}; |
|
@ -686,7 +682,7 @@ void DGUSScreenHandler::ManualAssistLeveling(DGUS_VP_Variable &var, void *val_pt |
|
|
#define mks_max(a, b) ((a) > (b)) ? (a) : (b) |
|
|
#define mks_max(a, b) ((a) > (b)) ? (a) : (b) |
|
|
void DGUSScreenHandler::TMC_ChangeConfig(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::TMC_ChangeConfig(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
#if EITHER(HAS_TRINAMIC_CONFIG, HAS_STEALTHCHOP) |
|
|
#if EITHER(HAS_TRINAMIC_CONFIG, HAS_STEALTHCHOP) |
|
|
uint16_t tmc_value = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t tmc_value = swap16(*(uint16_t*)val_ptr); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
@ -930,7 +926,7 @@ void DGUSScreenHandler::HandleManualMove(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::GetParkPos_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::GetParkPos_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
int16_t value_pos = swap16(*(int16_t*)val_ptr); |
|
|
const int16_t value_pos = swap16(*(int16_t*)val_ptr); |
|
|
|
|
|
|
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
case VP_X_PARK_POS: x_park_pos = value_pos; break; |
|
|
case VP_X_PARK_POS: x_park_pos = value_pos; break; |
|
@ -939,75 +935,76 @@ void DGUSScreenHandler::GetParkPos_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
default: break; |
|
|
default: break; |
|
|
} |
|
|
} |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleChangeLevelPoint_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleChangeLevelPoint_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("HandleStepPerMMChanged"); |
|
|
DEBUG_ECHOLNPGM("HandleStepPerMMChanged"); |
|
|
|
|
|
|
|
|
int16_t value_raw = swap16(*(int16_t*)val_ptr); |
|
|
const int16_t value_raw = swap16(*(int16_t*)val_ptr); |
|
|
|
|
|
DEBUG_ECHOLNPAIR_F("value_raw:", value_raw); |
|
|
DEBUG_ECHOLNPAIR_F("value:", value_raw); |
|
|
|
|
|
|
|
|
|
|
|
*(int16_t*)var.memadr = value_raw; |
|
|
*(int16_t*)var.memadr = value_raw; |
|
|
|
|
|
|
|
|
settings.save(); |
|
|
settings.save(); |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleStepPerMMChanged_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleStepPerMMChanged_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("HandleStepPerMMChanged"); |
|
|
DEBUG_ECHOLNPGM("HandleStepPerMMChanged"); |
|
|
|
|
|
|
|
|
uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
|
|
|
const float value = (float)value_raw; |
|
|
|
|
|
|
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
float value = (float)value_raw; |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
|
|
|
ExtUI::axis_t axis; |
|
|
ExtUI::axis_t axis; |
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
|
|
|
default: return; |
|
|
case VP_X_STEP_PER_MM: axis = ExtUI::axis_t::X; break; |
|
|
case VP_X_STEP_PER_MM: axis = ExtUI::axis_t::X; break; |
|
|
case VP_Y_STEP_PER_MM: axis = ExtUI::axis_t::Y; break; |
|
|
case VP_Y_STEP_PER_MM: axis = ExtUI::axis_t::Y; break; |
|
|
case VP_Z_STEP_PER_MM: axis = ExtUI::axis_t::Z; break; |
|
|
case VP_Z_STEP_PER_MM: axis = ExtUI::axis_t::Z; break; |
|
|
default: return; |
|
|
|
|
|
} |
|
|
} |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
ExtUI::setAxisSteps_per_mm(value, axis); |
|
|
ExtUI::setAxisSteps_per_mm(value, axis); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisSteps_per_mm(axis)); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisSteps_per_mm(axis)); |
|
|
settings.save(); |
|
|
settings.save(); |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleStepPerMMExtruderChanged_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleStepPerMMExtruderChanged_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("HandleStepPerMMExtruderChanged"); |
|
|
DEBUG_ECHOLNPGM("HandleStepPerMMExtruderChanged"); |
|
|
|
|
|
|
|
|
uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
|
|
|
const float value = (float)value_raw; |
|
|
|
|
|
|
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
float value = (float)value_raw; |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
|
|
|
ExtUI::extruder_t extruder; |
|
|
ExtUI::extruder_t extruder; |
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
default: return; |
|
|
default: return; |
|
|
#if HOTENDS >= 1 |
|
|
#if HAS_HOTEND |
|
|
case VP_E0_STEP_PER_MM: extruder = ExtUI::extruder_t::E0; break; |
|
|
case VP_E0_STEP_PER_MM: extruder = ExtUI::extruder_t::E0; break; |
|
|
#endif |
|
|
#endif |
|
|
#if HOTENDS >= 2 |
|
|
#if HAS_MULTI_HOTEND |
|
|
#endif |
|
|
case VP_E1_STEP_PER_MM: extruder = ExtUI::extruder_t::E1; break; |
|
|
case VP_E1_STEP_PER_MM: extruder = ExtUI::extruder_t::E1; break; |
|
|
#endif |
|
|
} |
|
|
} |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
ExtUI::setAxisSteps_per_mm(value, extruder); |
|
|
ExtUI::setAxisSteps_per_mm(value, extruder); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisSteps_per_mm(extruder)); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisSteps_per_mm(extruder)); |
|
|
settings.save(); |
|
|
settings.save(); |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleMaxSpeedChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleMaxSpeedChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("HandleMaxSpeedChange_MKS"); |
|
|
DEBUG_ECHOLNPGM("HandleMaxSpeedChange_MKS"); |
|
|
|
|
|
|
|
|
uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
|
|
|
const float value = (float)value_raw; |
|
|
|
|
|
|
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
float value = (float)value_raw; |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
|
|
|
ExtUI::axis_t axis; |
|
|
ExtUI::axis_t axis; |
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
case VP_X_MAX_SPEED: axis = ExtUI::axis_t::X; break; |
|
|
case VP_X_MAX_SPEED: axis = ExtUI::axis_t::X; break; |
|
@ -1015,59 +1012,57 @@ void DGUSScreenHandler::HandleMaxSpeedChange_MKS(DGUS_VP_Variable &var, void *va |
|
|
case VP_Z_MAX_SPEED: axis = ExtUI::axis_t::Z; break; |
|
|
case VP_Z_MAX_SPEED: axis = ExtUI::axis_t::Z; break; |
|
|
default: return; |
|
|
default: return; |
|
|
} |
|
|
} |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
// ExtUI::setAxisSteps_per_mm(value,extruder);
|
|
|
|
|
|
ExtUI::setAxisMaxFeedrate_mm_s(value, axis); |
|
|
ExtUI::setAxisMaxFeedrate_mm_s(value, axis); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxFeedrate_mm_s(axis)); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxFeedrate_mm_s(axis)); |
|
|
settings.save(); |
|
|
settings.save(); |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleExtruderMaxSpeedChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleExtruderMaxSpeedChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("HandleMaxSpeedChange_MKS"); |
|
|
DEBUG_ECHOLNPGM("HandleMaxSpeedChange_MKS"); |
|
|
|
|
|
|
|
|
uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
|
|
|
const float value = (float)value_raw; |
|
|
|
|
|
|
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
float value = (float)value_raw; |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
|
|
|
ExtUI::extruder_t extruder; |
|
|
ExtUI::extruder_t extruder; |
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
default: return; |
|
|
default: return; |
|
|
#if HOTENDS >= 1 |
|
|
#if HAS_HOTEND |
|
|
case VP_E0_MAX_SPEED: extruder = ExtUI::extruder_t::E0; break; |
|
|
case VP_E0_MAX_SPEED: extruder = ExtUI::extruder_t::E0; break; |
|
|
#endif |
|
|
#endif |
|
|
#if HOTENDS >= 2 |
|
|
#if HAS_MULTI_HOTEND |
|
|
#endif |
|
|
#endif |
|
|
case VP_E1_MAX_SPEED: extruder = ExtUI::extruder_t::E1; break; |
|
|
case VP_E1_MAX_SPEED: extruder = ExtUI::extruder_t::E1; break; |
|
|
} |
|
|
} |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
// ExtUI::setAxisSteps_per_mm(value,extruder);
|
|
|
|
|
|
ExtUI::setAxisMaxFeedrate_mm_s(value, extruder); |
|
|
ExtUI::setAxisMaxFeedrate_mm_s(value, extruder); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxFeedrate_mm_s(extruder)); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxFeedrate_mm_s(extruder)); |
|
|
settings.save(); |
|
|
settings.save(); |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleMaxAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleMaxAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("HandleMaxSpeedChange_MKS"); |
|
|
DEBUG_ECHOLNPGM("HandleMaxSpeedChange_MKS"); |
|
|
|
|
|
|
|
|
uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t value_raw = swap16(*(uint16_t*)val_ptr); |
|
|
|
|
|
const float value = (float)value_raw; |
|
|
|
|
|
|
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
DEBUG_ECHOLNPAIR("value_raw:", value_raw); |
|
|
float value = (float)value_raw; |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
|
|
|
ExtUI::axis_t axis; |
|
|
ExtUI::axis_t axis; |
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
|
|
|
default: return; |
|
|
case VP_X_ACC_MAX_SPEED: axis = ExtUI::axis_t::X; break; |
|
|
case VP_X_ACC_MAX_SPEED: axis = ExtUI::axis_t::X; break; |
|
|
case VP_Y_ACC_MAX_SPEED: axis = ExtUI::axis_t::Y; break; |
|
|
case VP_Y_ACC_MAX_SPEED: axis = ExtUI::axis_t::Y; break; |
|
|
case VP_Z_ACC_MAX_SPEED: axis = ExtUI::axis_t::Z; break; |
|
|
case VP_Z_ACC_MAX_SPEED: axis = ExtUI::axis_t::Z; break; |
|
|
default: return; |
|
|
|
|
|
} |
|
|
} |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
|
|
|
ExtUI::setAxisMaxAcceleration_mm_s2(value, axis); |
|
|
ExtUI::setAxisMaxAcceleration_mm_s2(value, axis); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxAcceleration_mm_s2(axis)); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxAcceleration_mm_s2(axis)); |
|
|
settings.save(); |
|
|
settings.save(); |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleExtruderAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleExtruderAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
@ -1079,76 +1074,66 @@ void DGUSScreenHandler::HandleExtruderAccChange_MKS(DGUS_VP_Variable &var, void |
|
|
ExtUI::extruder_t extruder; |
|
|
ExtUI::extruder_t extruder; |
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
default: return; |
|
|
default: return; |
|
|
#if HOTENDS >= 1 |
|
|
#if HAS_HOTEND |
|
|
case VP_E0_ACC_MAX_SPEED: extruder = ExtUI::extruder_t::E0; settings.load(); break; |
|
|
case VP_E0_ACC_MAX_SPEED: extruder = ExtUI::extruder_t::E0; settings.load(); break; |
|
|
#endif |
|
|
#endif |
|
|
#if HOTENDS >= 2 |
|
|
#if HAS_MULTI_HOTEND |
|
|
#endif |
|
|
case VP_E1_ACC_MAX_SPEED: extruder = ExtUI::extruder_t::E1; settings.load(); break; |
|
|
case VP_E1_ACC_MAX_SPEED: extruder = ExtUI::extruder_t::E1; settings.load(); break; |
|
|
#endif |
|
|
} |
|
|
} |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
DEBUG_ECHOLNPAIR_F("value:", value); |
|
|
// ExtUI::setAxisSteps_per_mm(value,extruder);
|
|
|
|
|
|
ExtUI::setAxisMaxAcceleration_mm_s2(value, extruder); |
|
|
ExtUI::setAxisMaxAcceleration_mm_s2(value, extruder); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxAcceleration_mm_s2(extruder)); |
|
|
DEBUG_ECHOLNPAIR_F("value_set:", ExtUI::getAxisMaxAcceleration_mm_s2(extruder)); |
|
|
settings.save(); |
|
|
settings.save(); |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleTravelAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleTravelAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t value_travel = swap16(*(uint16_t*)val_ptr); |
|
|
uint16_t value_travel = swap16(*(uint16_t*)val_ptr); |
|
|
float value = (float)value_travel; |
|
|
planner.settings.travel_acceleration = (float)value_travel; |
|
|
planner.settings.travel_acceleration = value; |
|
|
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleFeedRateMinChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleFeedRateMinChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t value_t = swap16(*(uint16_t*)val_ptr); |
|
|
uint16_t value_t = swap16(*(uint16_t*)val_ptr); |
|
|
float value = (float)value_t; |
|
|
planner.settings.min_feedrate_mm_s = (float)value_t; |
|
|
planner.settings.min_feedrate_mm_s = value; |
|
|
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleMin_T_F_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleMin_T_F_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t value_t_f = swap16(*(uint16_t*)val_ptr); |
|
|
uint16_t value_t_f = swap16(*(uint16_t*)val_ptr); |
|
|
float value = (float)value_t_f; |
|
|
planner.settings.min_travel_feedrate_mm_s = (float)value_t_f; |
|
|
planner.settings.min_travel_feedrate_mm_s = value; |
|
|
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleAccChange_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t value_acc = swap16(*(uint16_t*)val_ptr); |
|
|
uint16_t value_acc = swap16(*(uint16_t*)val_ptr); |
|
|
float value = (float)value_acc; |
|
|
planner.settings.acceleration = (float)value_acc; |
|
|
planner.settings.acceleration = value; |
|
|
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::HandleGetExMinTemp_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleGetExMinTemp_MKS(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t value_ex_min_temp = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t value_ex_min_temp = swap16(*(uint16_t*)val_ptr); |
|
|
thermalManager.extrude_min_temp = value_ex_min_temp; |
|
|
thermalManager.extrude_min_temp = value_ex_min_temp; |
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#if HAS_PID_HEATING |
|
|
#if HAS_PID_HEATING |
|
|
void DGUSScreenHandler::HandleTemperaturePIDChanged(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::HandleTemperaturePIDChanged(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
uint16_t rawvalue = swap16(*(uint16_t*)val_ptr); |
|
|
const uint16_t rawvalue = swap16(*(uint16_t*)val_ptr); |
|
|
DEBUG_ECHOLNPAIR("V1:", rawvalue); |
|
|
DEBUG_ECHOLNPAIR("V1:", rawvalue); |
|
|
float value = (float)rawvalue / 10; |
|
|
const float value = 1.0f * rawvalue; |
|
|
DEBUG_ECHOLNPAIR("V2:", value); |
|
|
DEBUG_ECHOLNPAIR("V2:", value); |
|
|
float newvalue = 0; |
|
|
float newvalue = 0; |
|
|
|
|
|
|
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
default: return; |
|
|
default: return; |
|
|
#if HOTENDS >= 1 |
|
|
#if HAS_HOTEND |
|
|
case VP_E0_PID_P: newvalue = value; break; |
|
|
case VP_E0_PID_P: newvalue = value; break; |
|
|
case VP_E0_PID_I: newvalue = scalePID_i(value); break; |
|
|
case VP_E0_PID_I: newvalue = scalePID_i(value); break; |
|
|
case VP_E0_PID_D: newvalue = scalePID_d(value); break; |
|
|
case VP_E0_PID_D: newvalue = scalePID_d(value); break; |
|
|
#endif |
|
|
#endif |
|
|
#if HOTENDS >= 2 |
|
|
#if HAS_MULTI_HOTEND |
|
|
case VP_E1_PID_P: newvalue = value; break; |
|
|
case VP_E1_PID_P: newvalue = value; break; |
|
|
case VP_E1_PID_I: newvalue = scalePID_i(value); break; |
|
|
case VP_E1_PID_I: newvalue = scalePID_i(value); break; |
|
|
case VP_E1_PID_D: newvalue = scalePID_d(value); break; |
|
|
case VP_E1_PID_D: newvalue = scalePID_d(value); break; |
|
@ -1224,7 +1209,6 @@ void DGUSScreenHandler::GetManualFilament(DGUS_VP_Variable &var, void *val_ptr) |
|
|
distanceFilament = value; |
|
|
distanceFilament = value; |
|
|
|
|
|
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::GetManualFilamentSpeed(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::GetManualFilamentSpeed(DGUS_VP_Variable &var, void *val_ptr) { |
|
@ -1237,137 +1221,65 @@ void DGUSScreenHandler::GetManualFilamentSpeed(DGUS_VP_Variable &var, void *val_ |
|
|
FilamentSpeed = value_len; |
|
|
FilamentSpeed = value_len; |
|
|
|
|
|
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
skipVP = var.VP; // don't overwrite value the next update time as the display might autoincrement in parallel
|
|
|
return; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::MKS_FilamentLoad(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::MKS_FilamentLoadUnload(DGUS_VP_Variable &var, void *val_ptr, const int filamentDir) { |
|
|
DEBUG_ECHOLNPGM("Load Filament"); |
|
|
#if EITHER(HAS_MULTI_HOTEND, SINGLENOZZLE) |
|
|
char buf[40]; |
|
|
uint8_t swap_tool = 0; |
|
|
|
|
|
#endif |
|
|
uint16_t val_t = swap16(*(uint16_t*)val_ptr); |
|
|
#if HAS_HOTEND |
|
|
|
|
|
uint8_t hotend_too_cold = 0; |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
if (!print_job_timer.isPaused() && !queue.ring_buffer.empty()) |
|
|
if (!print_job_timer.isPaused() && !queue.ring_buffer.empty()) |
|
|
return; |
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
char buf[40]; |
|
|
|
|
|
const uint16_t val_t = swap16(*(uint16_t*)val_ptr); |
|
|
switch (val_t) { |
|
|
switch (val_t) { |
|
|
|
|
|
default: break; |
|
|
case 0: |
|
|
case 0: |
|
|
#if HOTENDS >= 1 |
|
|
#if HAS_HOTEND |
|
|
if (thermalManager.degHotend(0) < thermalManager.extrude_min_temp) { |
|
|
if (thermalManager.tooColdToExtrude(0)) hotend_too_cold = 1; else swap_tool = 1; |
|
|
if (thermalManager.degTargetHotend(0) < thermalManager.extrude_min_temp) |
|
|
|
|
|
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, 0); |
|
|
|
|
|
sendinfoscreen(PSTR("NOTICE"), nullptr, PSTR("Please wait."), PSTR("Nozzle heating!"), true, true, true, true); |
|
|
|
|
|
SetupConfirmAction(nullptr); |
|
|
|
|
|
GotoScreen(DGUSLCD_SCREEN_POPUP); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
queue.enqueue_now_P(PSTR("T0")); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G91")); |
|
|
|
|
|
snprintf_P(buf,40,PSTR("G1 E%d F%d"),(int)distanceFilament,FilamentSpeed * 60); |
|
|
|
|
|
queue.enqueue_one_now(buf); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G90")); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
#endif |
|
|
break; |
|
|
break; |
|
|
|
|
|
|
|
|
case 1: |
|
|
case 1: |
|
|
#if HOTENDS >= 2 |
|
|
#if HAS_MULTI_HOTEND |
|
|
if (thermalManager.degHotend(1) < thermalManager.extrude_min_temp) { |
|
|
if (thermalManager.tooColdToExtrude(1)) hotend_too_cold = 2; else swap_tool = 2; |
|
|
if (thermalManager.degTargetHotend(1) < thermalManager.extrude_min_temp) |
|
|
#elif ENABLED(SINGLENOZZLE) |
|
|
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, 1); |
|
|
if (thermalManager.tooColdToExtrude(0)) hotend_too_cold = 1; else swap_tool = 2; |
|
|
sendinfoscreen(PSTR("NOTICE"), nullptr, PSTR("Please wait."), PSTR("Nozzle heating!"), true, true, true, true); |
|
|
|
|
|
SetupConfirmAction(nullptr); |
|
|
|
|
|
GotoScreen(DGUSLCD_SCREEN_POPUP); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
queue.enqueue_now_P(PSTR("T1")); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G91")); |
|
|
|
|
|
snprintf_P(buf,40,PSTR("G1 E%d F%d"),(int)distanceFilament,FilamentSpeed * 60); |
|
|
|
|
|
queue.enqueue_one_now(buf); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G90")); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
|
|
|
#if ENABLED(SINGLENOZZLE) |
|
|
|
|
|
if (thermalManager.degHotend(0) < thermalManager.extrude_min_temp) { |
|
|
|
|
|
if (thermalManager.degTargetHotend(0) < thermalManager.extrude_min_temp) |
|
|
|
|
|
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, 0); |
|
|
|
|
|
sendinfoscreen(PSTR("NOTICE"), nullptr, PSTR("Please wait."), PSTR("Nozzle heating!"), true, true, true, true); |
|
|
|
|
|
SetupConfirmAction(nullptr); |
|
|
|
|
|
GotoScreen(DGUSLCD_SCREEN_POPUP); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
queue.enqueue_now_P(PSTR("T1")); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G91")); |
|
|
|
|
|
snprintf_P(buf,40,PSTR("G1 E%d F%d"),(int)distanceFilament,FilamentSpeed * 60); |
|
|
|
|
|
queue.enqueue_one_now(buf); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G90")); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
#endif |
|
|
break; |
|
|
break; |
|
|
|
|
|
|
|
|
default: |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#if HAS_HOTEND |
|
|
|
|
|
if (hotend_too_cold) { |
|
|
|
|
|
if (thermalManager.targetTooColdToExtrude(hotend_too_cold - 1)) thermalManager.setTargetHotend(thermalManager.extrude_min_temp, hotend_too_cold - 1); |
|
|
|
|
|
sendinfoscreen(PSTR("NOTICE"), nullptr, PSTR("Please wait."), PSTR("Nozzle heating!"), true, true, true, true); |
|
|
|
|
|
SetupConfirmAction(nullptr); |
|
|
|
|
|
GotoScreen(DGUSLCD_SCREEN_POPUP); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if EITHER(HAS_MULTI_HOTEND, SINGLENOZZLE) |
|
|
|
|
|
if (swap_tool) { |
|
|
|
|
|
queue.enqueue_now_P(swap_tool == 2 ? PSTR("T1") : PSTR("T0")); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G91")); |
|
|
|
|
|
snprintf_P(buf, 40, PSTR("G1 E%d F%d"), (int)distanceFilament * filamentDir, FilamentSpeed * 60); |
|
|
|
|
|
queue.enqueue_one_now(buf); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G90")); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void DGUSScreenHandler::MKS_FilamentLoad(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
|
|
|
DEBUG_ECHOLNPGM("Load Filament"); |
|
|
|
|
|
MKS_FilamentLoadUnload(var, val_ptr, 1); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
void DGUSScreenHandler::MKS_FilamentUnLoad(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
void DGUSScreenHandler::MKS_FilamentUnLoad(DGUS_VP_Variable &var, void *val_ptr) { |
|
|
DEBUG_ECHOLNPGM("UnLoad Filament"); |
|
|
DEBUG_ECHOLNPGM("UnLoad Filament"); |
|
|
char buf[40]; |
|
|
MKS_FilamentLoadUnload(var, val_ptr, -1); |
|
|
uint16_t val_t = swap16(*(uint16_t*)val_ptr); |
|
|
|
|
|
switch (val_t) { |
|
|
|
|
|
case 0: |
|
|
|
|
|
#if HOTENDS >= 1 |
|
|
|
|
|
if (thermalManager.degHotend(0) < thermalManager.extrude_min_temp) { |
|
|
|
|
|
if (thermalManager.degTargetHotend(0) < thermalManager.extrude_min_temp) |
|
|
|
|
|
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, 0); |
|
|
|
|
|
sendinfoscreen(PSTR("NOTICE"), nullptr, PSTR("Please wait."), PSTR("Nozzle heating!"), true, true, true, true); |
|
|
|
|
|
SetupConfirmAction(nullptr); |
|
|
|
|
|
GotoScreen(DGUSLCD_SCREEN_POPUP); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
queue.enqueue_now_P(PSTR("T0")); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G91")); |
|
|
|
|
|
snprintf_P(buf,40,PSTR("G1 E-%d F%d"),(int)distanceFilament,FilamentSpeed * 60); |
|
|
|
|
|
queue.enqueue_one_now(buf); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G90")); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
|
|
|
break; |
|
|
|
|
|
case 1: |
|
|
|
|
|
#if HOTENDS >= 2 |
|
|
|
|
|
if (thermalManager.degHotend(1) < thermalManager.extrude_min_temp) { |
|
|
|
|
|
if (thermalManager.degTargetHotend(1) < thermalManager.extrude_min_temp) |
|
|
|
|
|
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, 1); |
|
|
|
|
|
sendinfoscreen(PSTR("NOTICE"), nullptr, PSTR("Please wait."), PSTR("Nozzle heating!"), true, true, true, true); |
|
|
|
|
|
SetupConfirmAction(nullptr); |
|
|
|
|
|
GotoScreen(DGUSLCD_SCREEN_POPUP); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
queue.enqueue_now_P(PSTR("T1")); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G91")); |
|
|
|
|
|
snprintf_P(buf,40,PSTR("G1 E-%d F%d"),(int)distanceFilament,FilamentSpeed * 60); |
|
|
|
|
|
queue.enqueue_one_now(buf); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G90")); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#if ENABLED(SINGLENOZZLE) |
|
|
|
|
|
if (thermalManager.degHotend(0) < thermalManager.extrude_min_temp) { |
|
|
|
|
|
if (thermalManager.degTargetHotend(0) < thermalManager.extrude_min_temp) |
|
|
|
|
|
thermalManager.setTargetHotend(thermalManager.extrude_min_temp, 0); |
|
|
|
|
|
sendinfoscreen(PSTR("NOTICE"), nullptr, PSTR("Please wait."), PSTR("Nozzle heating!"), true, true, true, true); |
|
|
|
|
|
SetupConfirmAction(nullptr); |
|
|
|
|
|
GotoScreen(DGUSLCD_SCREEN_POPUP); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
queue.enqueue_now_P(PSTR("T1")); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G91")); |
|
|
|
|
|
snprintf_P(buf,40,PSTR("G1 E-%d F%d"),(int)distanceFilament,FilamentSpeed * 60); |
|
|
|
|
|
queue.enqueue_one_now(buf); |
|
|
|
|
|
queue.enqueue_now_P(PSTR("G90")); |
|
|
|
|
|
} |
|
|
|
|
|
#endif |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#if ENABLED(DGUS_FILAMENT_LOADUNLOAD) |
|
|
#if ENABLED(DGUS_FILAMENT_LOADUNLOAD) |
|
@ -1378,17 +1290,15 @@ void DGUSScreenHandler::MKS_FilamentUnLoad(DGUS_VP_Variable &var, void *val_ptr) |
|
|
uint8_t e_temp = 0; |
|
|
uint8_t e_temp = 0; |
|
|
filament_data.heated = false; |
|
|
filament_data.heated = false; |
|
|
uint16_t preheat_option = swap16(*(uint16_t*)val_ptr); |
|
|
uint16_t preheat_option = swap16(*(uint16_t*)val_ptr); |
|
|
if (preheat_option <= 8) { // Load filament type
|
|
|
if (preheat_option >= 10) { // Unload filament type
|
|
|
filament_data.action = 1; |
|
|
|
|
|
} |
|
|
|
|
|
else if (preheat_option >= 10) { // Unload filament type
|
|
|
|
|
|
preheat_option -= 10; |
|
|
preheat_option -= 10; |
|
|
filament_data.action = 2; |
|
|
filament_data.action = 2; |
|
|
filament_data.purge_length = DGUS_FILAMENT_PURGE_LENGTH; |
|
|
filament_data.purge_length = DGUS_FILAMENT_PURGE_LENGTH; |
|
|
} |
|
|
} |
|
|
else { // Cancel filament operation
|
|
|
else if (preheat_option <= 8) // Load filament type
|
|
|
|
|
|
filament_data.action = 1; |
|
|
|
|
|
else // Cancel filament operation
|
|
|
filament_data.action = 0; |
|
|
filament_data.action = 0; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
switch (preheat_option) { |
|
|
switch (preheat_option) { |
|
|
case 0: // Load PLA
|
|
|
case 0: // Load PLA
|
|
@ -1416,10 +1326,10 @@ void DGUSScreenHandler::MKS_FilamentUnLoad(DGUS_VP_Variable &var, void *val_ptr) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (filament_data.action == 0) { // Go back to utility screen
|
|
|
if (filament_data.action == 0) { // Go back to utility screen
|
|
|
#if HOTENDS >= 1 |
|
|
#if HAS_HOTEND |
|
|
thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E0); |
|
|
thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E0); |
|
|
#endif |
|
|
#endif |
|
|
#if HOTENDS >= 2 |
|
|
#if HAS_MULTI_HOTEND |
|
|
thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E1); |
|
|
thermalManager.setTargetHotend(e_temp, ExtUI::extruder_t::E1); |
|
|
#endif |
|
|
#endif |
|
|
GotoScreen(DGUSLCD_SCREEN_UTILITY); |
|
|
GotoScreen(DGUSLCD_SCREEN_UTILITY); |
|
@ -1427,13 +1337,13 @@ void DGUSScreenHandler::MKS_FilamentUnLoad(DGUS_VP_Variable &var, void *val_ptr) |
|
|
else { // Go to the preheat screen to show the heating progress
|
|
|
else { // Go to the preheat screen to show the heating progress
|
|
|
switch (var.VP) { |
|
|
switch (var.VP) { |
|
|
default: return; |
|
|
default: return; |
|
|
#if HOTENDS >= 1 |
|
|
#if HAS_HOTEND |
|
|
case VP_E0_FILAMENT_LOAD_UNLOAD: |
|
|
case VP_E0_FILAMENT_LOAD_UNLOAD: |
|
|
filament_data.extruder = ExtUI::extruder_t::E0; |
|
|
filament_data.extruder = ExtUI::extruder_t::E0; |
|
|
thermalManager.setTargetHotend(e_temp, filament_data.extruder); |
|
|
thermalManager.setTargetHotend(e_temp, filament_data.extruder); |
|
|
break; |
|
|
break; |
|
|
#endif |
|
|
#endif |
|
|
#if HOTENDS >= 2 |
|
|
#if HAS_MULTI_HOTEND |
|
|
case VP_E1_FILAMENT_LOAD_UNLOAD: |
|
|
case VP_E1_FILAMENT_LOAD_UNLOAD: |
|
|
filament_data.extruder = ExtUI::extruder_t::E1; |
|
|
filament_data.extruder = ExtUI::extruder_t::E1; |
|
|
thermalManager.setTargetHotend(e_temp, filament_data.extruder); |
|
|
thermalManager.setTargetHotend(e_temp, filament_data.extruder); |
|
@ -1475,6 +1385,7 @@ void DGUSScreenHandler::MKS_FilamentUnLoad(DGUS_VP_Variable &var, void *val_ptr) |
|
|
ExtUI::setAxisPosition_mm(movevalue, filament_data.extruder); |
|
|
ExtUI::setAxisPosition_mm(movevalue, filament_data.extruder); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#endif // DGUS_FILAMENT_LOADUNLOAD
|
|
|
#endif // DGUS_FILAMENT_LOADUNLOAD
|
|
|
|
|
|
|
|
|
bool DGUSScreenHandler::loop() { |
|
|
bool DGUSScreenHandler::loop() { |
|
|