Merge pull request #3720 from 3d-gussner/MK3_312_Temp_Model_menu

MK3_3.12: Add Menu Calibration -> Temp Model cal.
This commit is contained in:
DRracer 2022-11-03 12:13:40 +01:00 committed by GitHub
commit 5355f51ba3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 89 additions and 19 deletions

View File

@ -59,6 +59,7 @@ struct model_data
}; };
static bool enabled; // model check enabled static bool enabled; // model check enabled
static bool valid = false; // model is valid
static bool warn_beep = true; // beep on warning threshold static bool warn_beep = true; // beep on warning threshold
static model_data data; // default heater data static model_data data; // default heater data

View File

@ -2506,6 +2506,7 @@ static void temp_model_reset_enabled(bool enabled)
{ {
TempMgrGuard temp_mgr_guard; TempMgrGuard temp_mgr_guard;
temp_model::enabled = enabled; temp_model::enabled = enabled;
temp_model::valid = enabled;
temp_model::data.flag_bits.uninitialized = true; temp_model::data.flag_bits.uninitialized = true;
} }
@ -2516,11 +2517,19 @@ void temp_model_set_enabled(bool enabled)
TempMgrGuard temp_mgr_guard; TempMgrGuard temp_mgr_guard;
temp_model::enabled = enabled; temp_model::enabled = enabled;
temp_model::setup(); temp_model::setup();
temp_model::valid = true;
} }
// verify that the model has been enabled // verify that the model has been enabled
if(enabled && !temp_model::enabled) if(enabled && !temp_model::enabled) {
SERIAL_ECHOLNPGM("TM: invalid parameters, cannot enable"); SERIAL_ECHOLNPGM("TM: invalid parameters, cannot enable");
temp_model::valid = false;
}
}
bool temp_model_valid()
{
return temp_model::valid;
} }
void temp_model_set_warn_beep(bool enabled) void temp_model_set_warn_beep(bool enabled)
@ -2582,6 +2591,7 @@ void temp_model_reset_settings()
temp_model::data.err = TEMP_MODEL_E; temp_model::data.err = TEMP_MODEL_E;
temp_model::warn_beep = true; temp_model::warn_beep = true;
temp_model::enabled = false; temp_model::enabled = false;
temp_model::valid = false;
} }
void temp_model_load_settings() void temp_model_load_settings()
@ -2779,21 +2789,26 @@ static bool autotune(int16_t cal_temp)
{ {
uint16_t samples; uint16_t samples;
float e; float e;
char tm_message[20];
// bootstrap C/R values without fan // bootstrap C/R values without fan
set_fan_speed(0); set_fan_speed(0);
for(uint8_t i = 0; i != 2; ++i) { for(uint8_t i = 0; i != 2; ++i) {
const char* PROGMEM verb = (i == 0? PSTR("initial"): PSTR("refining")); const char* PROGMEM verb = (i == 0? PSTR("initial"): PSTR("refine"));
target_temperature[0] = 0; target_temperature[0] = 0;
if(current_temperature[0] >= TEMP_MODEL_CAL_Tl) { if(current_temperature[0] >= TEMP_MODEL_CAL_Tl) {
printf_P(PSTR("TM: cooling down to %dC\n"), TEMP_MODEL_CAL_Tl); //!01234567890123456789|
//!TM: cool down <50C |
sprintf_P(tm_message, PSTR("TM: cool down <%dC"), TEMP_MODEL_CAL_Tl);
lcd_setstatus_serial(tm_message);
cooldown(TEMP_MODEL_CAL_Tl); cooldown(TEMP_MODEL_CAL_Tl);
wait(10000); wait(10000);
} }
//!01234567890123456789|
printf_P(PSTR("TM: %S C estimation\n"), verb); //!TM: initial R est. |
//!TM: refine R est. |
sprintf_P(tm_message, PSTR("TM: %S C est."), verb);
lcd_setstatus_serial(tm_message);
target_temperature[0] = cal_temp; target_temperature[0] = cal_temp;
samples = record(); samples = record();
if(temp_error_state.v || !samples) if(temp_error_state.v || !samples)
@ -2812,8 +2827,11 @@ static bool autotune(int16_t cal_temp)
wait_temp(); wait_temp();
if(i) break; // we don't need to refine R if(i) break; // we don't need to refine R
wait(30000); // settle PID regulation wait(30000); // settle PID regulation
//!01234567890123456789|
printf_P(PSTR("TM: %S R estimation @ %dC\n"), verb, cal_temp); //!TM: initial R 230C |
//!TM: refine R 230C |
sprintf_P(tm_message, PSTR("TM: %S R %dC"), verb, cal_temp);
lcd_setstatus_serial(tm_message);
samples = record(); samples = record();
if(temp_error_state.v || !samples) if(temp_error_state.v || !samples)
return true; return true;
@ -2836,8 +2854,10 @@ static bool autotune(int16_t cal_temp)
uint8_t speed = 256 / TEMP_MODEL_R_SIZE * (i + 1) - 1; uint8_t speed = 256 / TEMP_MODEL_R_SIZE * (i + 1) - 1;
set_fan_speed(speed); set_fan_speed(speed);
wait(10000); wait(10000);
//!01234567890123456789|
printf_P(PSTR("TM: R[%u] estimation\n"), (unsigned)i); //!TM: R[15] estimat. |
sprintf_P(tm_message, PSTR("TM: R[%u] estimat."), (unsigned)i);
lcd_setstatus_serial(tm_message);
samples = record(); samples = record();
if(temp_error_state.v || !samples) if(temp_error_state.v || !samples)
return true; return true;
@ -2873,30 +2893,34 @@ static bool autotune(int16_t cal_temp)
void temp_model_autotune(int16_t temp, bool selftest) void temp_model_autotune(int16_t temp, bool selftest)
{ {
char tm_message[20];
if(moves_planned() || printer_active()) { if(moves_planned() || printer_active()) {
SERIAL_ECHOLNPGM("TM: printer needs to be idle for calibration"); //!01234567890123456789|
//!TM: Cal. NOT ILDE |
sprintf_P(tm_message, PSTR("TM: Cal. NOT IDLE"));
lcd_setstatus_serial(tm_message);
return; return;
} }
// lockout the printer during calibration // lockout the printer during calibration
KEEPALIVE_STATE(IN_PROCESS); KEEPALIVE_STATE(IN_PROCESS);
menu_set_block(MENU_BLOCK_TEMP_MODEL_AUTOTUNE); menu_set_block(MENU_BLOCK_TEMP_MODEL_AUTOTUNE);
lcd_setstatuspgm(_i("Temp. model autotune")); ////MSG_TEMP_MODEL_AUTOTUNE c=20
lcd_return_to_status(); lcd_return_to_status();
// set the model checking state during self-calibration // set the model checking state during self-calibration
bool was_enabled = temp_model::enabled; bool was_enabled = temp_model::enabled;
temp_model_reset_enabled(selftest); temp_model_reset_enabled(selftest);
SERIAL_ECHOLNPGM("TM: calibration start");
SERIAL_ECHOLNPGM("TM: autotune start");
bool err = temp_model_cal::autotune(temp > 0 ? temp : TEMP_MODEL_CAL_Th); bool err = temp_model_cal::autotune(temp > 0 ? temp : TEMP_MODEL_CAL_Th);
// always reset temperature // always reset temperature
disable_heater(); disable_heater();
if(err) { if(err) {
SERIAL_ECHOLNPGM("TM: autotune failed"); //!01234567890123456789|
lcd_setstatuspgm(_i("TM autotune failed")); ////MSG_TM_AUTOTUNE_FAILED c=20 //!TM: calibr. failed! |
sprintf_P(tm_message, PSTR("TM: calibr. failed!"));
lcd_setstatus_serial(tm_message);
if(temp_error_state.v) if(temp_error_state.v)
temp_model_cal::set_fan_speed(255); temp_model_cal::set_fan_speed(255);
} else { } else {

View File

@ -218,6 +218,7 @@ void PID_autotune(float temp, int extruder, int ncycles);
#ifdef TEMP_MODEL #ifdef TEMP_MODEL
void temp_model_set_enabled(bool enabled); void temp_model_set_enabled(bool enabled);
bool temp_model_valid();
void temp_model_set_warn_beep(bool enabled); void temp_model_set_warn_beep(bool enabled);
void temp_model_set_params(float C = NAN, float P = NAN, float Ta_corr = NAN, float warn = NAN, float err = NAN); void temp_model_set_params(float C = NAN, float P = NAN, float Ta_corr = NAN, float warn = NAN, float err = NAN);
void temp_model_set_resistance(uint8_t index, float R); void temp_model_set_resistance(uint8_t index, float R);

View File

@ -1040,8 +1040,27 @@ void lcd_commands()
lcd_commands_type = LcdCommands::Idle; lcd_commands_type = LcdCommands::Idle;
} }
} }
#ifdef TEMP_MODEL
if (lcd_commands_type == LcdCommands::TempModel) {
if (lcd_commands_step == 0) {
lcd_commands_step = 3;
}
if (lcd_commands_step == 3) {
enquecommand_P(PSTR("M310 A F0"));
lcd_commands_step = 2;
}
if (lcd_commands_step ==2 && temp_model_valid()) {
enquecommand_P(PSTR("M310 S1"));
lcd_commands_step = 1;
}
//if (lcd_commands_step == 1 && calibrated()) {
if (lcd_commands_step == 1 && temp_model_valid()) {
enquecommand_P(PSTR("M500"));
lcd_commands_step = 0;
lcd_commands_type = LcdCommands::Idle;
}
}
#endif //TEMP_MODEL
} }
void lcd_return_to_status() void lcd_return_to_status()
@ -4920,6 +4939,9 @@ static void lcd_calibration_menu()
MENU_ITEM_FUNCTION_P(_T(MSG_PINDA_CALIBRATION), lcd_calibrate_pinda); MENU_ITEM_FUNCTION_P(_T(MSG_PINDA_CALIBRATION), lcd_calibrate_pinda);
} }
} }
#ifdef TEMP_MODEL
MENU_ITEM_SUBMENU_P(_n("Temp Model cal."), lcd_temp_model_cal);
#endif //TEMP_MODEL
MENU_END(); MENU_END();
} }
@ -5981,6 +6003,14 @@ void lcd_print_stop()
lcd_return_to_status(); lcd_return_to_status();
} }
#ifdef TEMP_MODEL
void lcd_temp_model_cal()
{
lcd_commands_type = LcdCommands::TempModel;
lcd_return_to_status();
}
#endif //TEMP_MODEL
void lcd_sdcard_stop() void lcd_sdcard_stop()
{ {
@ -7561,6 +7591,13 @@ void lcd_setstatuspgm(const char* message)
lcd_updatestatus(message, true); lcd_updatestatus(message, true);
} }
void lcd_setstatus_serial(const char* message)
{
if (lcd_message_check(LCD_STATUS_NONE))
lcd_updatestatus(message);
SERIAL_ECHOLN(message);
}
void lcd_setalertstatus_(const char* message, uint8_t severity, bool progmem) void lcd_setalertstatus_(const char* message, uint8_t severity, bool progmem)
{ {
if (lcd_message_check(severity)) { if (lcd_message_check(severity)) {

View File

@ -21,6 +21,7 @@ void ultralcd_init();
// Set the current status message (equivalent to LCD_STATUS_NONE) // Set the current status message (equivalent to LCD_STATUS_NONE)
void lcd_setstatus(const char* message); void lcd_setstatus(const char* message);
void lcd_setstatuspgm(const char* message); void lcd_setstatuspgm(const char* message);
void lcd_setstatus_serial(const char* message);
//! return to the main status screen and display the alert message //! return to the main status screen and display the alert message
//! Beware - it has sideeffects: //! Beware - it has sideeffects:
@ -47,6 +48,9 @@ void lcd_pause_print();
void lcd_pause_usb_print(); void lcd_pause_usb_print();
void lcd_resume_print(); void lcd_resume_print();
void lcd_print_stop(); void lcd_print_stop();
#ifdef TEMP_MODEL
void lcd_temp_model_cal();
#endif //TEMP_MODEL
void lcd_load_filament_color_check(); void lcd_load_filament_color_check();
extern void lcd_belttest(); extern void lcd_belttest();
@ -107,6 +111,9 @@ enum class LcdCommands : uint_least8_t
LongPause, LongPause,
PidExtruder, PidExtruder,
Layer1Cal, Layer1Cal,
#ifdef TEMP_MODEL
TempModel,
#endif //TEMP_MODEL
}; };
extern LcdCommands lcd_commands_type; extern LcdCommands lcd_commands_type;