mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-06 05:39:17 +08:00
FIX: wrong prepare time with chamber temp
1.Caused by missing break of switch case jira:NONE Signed-off-by: xun.zhang <xun.zhang@bambulab.com> Change-Id: Ie667eda4069f3e2487ed87081580e2540ae4da7b
This commit is contained in:
parent
c7bce73454
commit
9267bd65aa
@ -1952,12 +1952,14 @@ void GCodeProcessor::process_gcode_line(const GCodeReader::GCodeLine& line, bool
|
||||
case '0': { process_M140(line); break; } // Set bed temperature
|
||||
default: break;
|
||||
}
|
||||
break;
|
||||
case '9':
|
||||
switch (cmd[3]) {
|
||||
case '0': { process_M190(line); break; } // Wait bed temperature
|
||||
case '1': { process_M191(line); break; } // Wait chamber temperature
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user