Merge pull request #794 from stahlfabrik/M860-enhanced

Improved M860 - now wait for cooling of PINDA, too
This commit is contained in:
PavelSindler 2018-06-06 12:01:06 +02:00 committed by GitHub
commit 42cfcb2601
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6418,10 +6418,10 @@ Sigma_Exit:
#ifdef PINDA_THERMISTOR
case 860: // M860 - Wait for PINDA thermistor to reach target temperature.
{
int setTargetPinda = 0;
int set_target_pinda = 0;
if (code_seen('S')) {
setTargetPinda = code_value();
set_target_pinda = code_value();
}
else {
break;
@ -6430,19 +6430,24 @@ Sigma_Exit:
LCD_MESSAGERPGM(_T(MSG_PLEASE_WAIT));
SERIAL_PROTOCOLPGM("Wait for PINDA target temperature:");
SERIAL_PROTOCOL(setTargetPinda);
SERIAL_PROTOCOL(set_target_pinda);
SERIAL_PROTOCOLLN("");
codenum = millis();
cancel_heatup = false;
while ((!cancel_heatup) && current_temperature_pinda < setTargetPinda) {
bool is_pinda_cooling = false;
if ((degTargetBed() == 0) && (degTargetHotend(0) == 0)) {
is_pinda_cooling = true;
}
while ( ((!is_pinda_cooling) && (!cancel_heatup) && (current_temperature_pinda < set_target_pinda)) || (is_pinda_cooling && (current_temperature_pinda > set_target_pinda)) ) {
if ((millis() - codenum) > 1000) //Print Temp Reading every 1 second while waiting.
{
SERIAL_PROTOCOLPGM("P:");
SERIAL_PROTOCOL_F(current_temperature_pinda, 1);
SERIAL_PROTOCOLPGM("/");
SERIAL_PROTOCOL(setTargetPinda);
SERIAL_PROTOCOL(set_target_pinda);
SERIAL_PROTOCOLLN("");
codenum = millis();
}
@ -6454,6 +6459,7 @@ Sigma_Exit:
break;
}
case 861: // M861 - Set/Read PINDA temperature compensation offsets
if (code_seen('?')) { // ? - Print out current EEPROM offset values
uint8_t cal_status = calibration_status_pinda();