Consequences of the stepping extruder now being optional.

This commit is contained in:
Markus Hitter 2011-03-02 00:41:29 +01:00
parent d2bf65822e
commit e688e8b788
5 changed files with 5 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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