Consequences of the stepping extruder now being optional.
This commit is contained in:
parent
d2bf65822e
commit
e688e8b788
|
|
@ -368,7 +368,7 @@ DEFINE_TEMP_SENSOR(noheater, TT_INTERCOM, 0)
|
|||
|
||||
/*
|
||||
DC extruder
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name. You probably also want to comment out E_STEP_PIN and E_DIR_PIN in the Pinouts section above
|
||||
*/
|
||||
// #define DC_EXTRUDER HEATER_motor
|
||||
// #define DC_EXTRUDER_PWM 180
|
||||
|
|
|
|||
|
|
@ -359,7 +359,7 @@ DEFINE_HEATER(extruder, PORTD, PIND6, OCR2B)
|
|||
|
||||
/*
|
||||
DC extruder
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name. You probably also want to comment out E_STEP_PIN and E_DIR_PIN in the Pinouts section above
|
||||
*/
|
||||
// #define DC_EXTRUDER HEATER_motor
|
||||
// #define DC_EXTRUDER_PWM 180
|
||||
|
|
|
|||
|
|
@ -391,7 +391,7 @@ DEFINE_HEATER(bed, PORTB, PINB4, OCR0B)
|
|||
|
||||
/*
|
||||
DC extruder
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name. You probably also want to comment out E_STEP_PIN and E_DIR_PIN in the Pinouts section above
|
||||
*/
|
||||
// #define DC_EXTRUDER HEATER_motor
|
||||
// #define DC_EXTRUDER_PWM 180
|
||||
|
|
|
|||
|
|
@ -370,7 +370,7 @@ DEFINE_HEATER(fan, PORTH, PINH6, OCR2B)
|
|||
|
||||
/*
|
||||
DC extruder
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name
|
||||
If you have a DC motor extruder, configure it as a "heater" above and define this value as the index or name. You probably also want to comment out E_STEP_PIN and E_DIR_PIN in the Pinouts section above
|
||||
*/
|
||||
// #define DC_EXTRUDER HEATER_motor
|
||||
// #define DC_EXTRUDER_PWM 180
|
||||
|
|
|
|||
6
pinio.h
6
pinio.h
|
|
@ -150,11 +150,7 @@ End Step - All Steppers
|
|||
(so we don't have to delay in interrupt context)
|
||||
*/
|
||||
|
||||
#ifndef DC_EXTRUDER
|
||||
#define unstep() do { _x_step(0); _y_step(0); _z_step(0); _e_step(0); } while (0)
|
||||
#else
|
||||
#define unstep() do { _x_step(0); _y_step(0); _z_step(0); } while (0)
|
||||
#endif
|
||||
#define unstep() do { _x_step(0); _y_step(0); _z_step(0); _e_step(0); } while (0)
|
||||
|
||||
/*
|
||||
Stepper Enable Pins
|
||||
|
|
|
|||
Loading…
Reference in New Issue