Merge pull request #947 from Dim3nsioneer/Marlin_v1
Add feature 'switch unused feeder(s) off'
This commit is contained in:
commit
c8d0ca9337
@ -305,6 +305,7 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
#define DISABLE_Y false
|
#define DISABLE_Y false
|
||||||
#define DISABLE_Z false
|
#define DISABLE_Z false
|
||||||
#define DISABLE_E false // For all extruders
|
#define DISABLE_E false // For all extruders
|
||||||
|
#define DISABLE_INACTIVE_EXTRUDER true //disable only inactive extruders and keep active extruder enabled
|
||||||
|
|
||||||
#define INVERT_X_DIR true // for Mendel set to false, for Orca set to true
|
#define INVERT_X_DIR true // for Mendel set to false, for Orca set to true
|
||||||
#define INVERT_Y_DIR false // for Mendel set to true, for Orca set to false
|
#define INVERT_Y_DIR false // for Mendel set to true, for Orca set to false
|
||||||
|
@ -657,13 +657,25 @@ block->steps_y = labs((target[X_AXIS]-position[X_AXIS]) - (target[Y_AXIS]-positi
|
|||||||
if(block->steps_z != 0) enable_z();
|
if(block->steps_z != 0) enable_z();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Enable all
|
// Enable extruder(s)
|
||||||
if(block->steps_e != 0)
|
if(block->steps_e != 0)
|
||||||
|
{
|
||||||
|
if (DISABLE_INACTIVE_EXTRUDER) //enable only selected extruder
|
||||||
|
{
|
||||||
|
switch(extruder)
|
||||||
|
{
|
||||||
|
case 0: enable_e0(); disable_e1(); disable_e2(); break;
|
||||||
|
case 1: disable_e0(); enable_e1(); disable_e2(); break;
|
||||||
|
case 2: disable_e0(); disable_e1(); enable_e2(); break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else //enable all
|
||||||
{
|
{
|
||||||
enable_e0();
|
enable_e0();
|
||||||
enable_e1();
|
enable_e1();
|
||||||
enable_e2();
|
enable_e2();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (block->steps_e == 0)
|
if (block->steps_e == 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user