Remove usage of global variable tmp_extruder in M200.
This commit is contained in:
parent
7a88fc9ef7
commit
9fb68fb724
1 changed files with 4 additions and 4 deletions
|
@ -5819,10 +5819,10 @@ Sigma_Exit:
|
|||
case 200: // M200 D<millimeters> set filament diameter and set E axis units to cubic millimeters (use S0 to set back to millimeters).
|
||||
{
|
||||
|
||||
tmp_extruder = active_extruder;
|
||||
uint8_t extruder = active_extruder;
|
||||
if(code_seen('T')) {
|
||||
tmp_extruder = code_value();
|
||||
if(tmp_extruder >= EXTRUDERS) {
|
||||
extruder = code_value();
|
||||
if(extruder >= EXTRUDERS) {
|
||||
SERIAL_ECHO_START;
|
||||
SERIAL_ECHO(_i("M200 Invalid extruder "));////MSG_M200_INVALID_EXTRUDER c=0 r=0
|
||||
break;
|
||||
|
@ -5836,7 +5836,7 @@ Sigma_Exit:
|
|||
// for all extruders
|
||||
volumetric_enabled = false;
|
||||
} else {
|
||||
filament_size[tmp_extruder] = (float)code_value();
|
||||
filament_size[extruder] = (float)code_value();
|
||||
// make sure all extruders have some sane value for the filament size
|
||||
filament_size[0] = (filament_size[0] == 0.0 ? DEFAULT_NOMINAL_FILAMENT_DIA : filament_size[0]);
|
||||
#if EXTRUDERS > 1
|
||||
|
|
Loading…
Reference in a new issue