Fix config files which didn't pass the new regression test.
All the changes are pretty much dummies, no functional change anywhere.
This commit is contained in:
parent
f0604b5e9d
commit
595dd017ea
|
|
@ -183,6 +183,7 @@ DEFINE_TEMP_SENSOR(noheater, TT_INTERCOM, AIO0, 0)
|
||||||
Heater pins a user should be able to choose from in configtool. All
|
Heater pins a user should be able to choose from in configtool. All
|
||||||
commented out.
|
commented out.
|
||||||
*/
|
*/
|
||||||
|
//#define HEATER_PIN xxxx
|
||||||
|
|
||||||
/** \def DEFINE_HEATER
|
/** \def DEFINE_HEATER
|
||||||
Define your heaters and devices here.
|
Define your heaters and devices here.
|
||||||
|
|
|
||||||
|
|
@ -84,6 +84,10 @@
|
||||||
//#define E_INVERT_DIR
|
//#define E_INVERT_DIR
|
||||||
#define E_INVERT_ENABLE
|
#define E_INVERT_ENABLE
|
||||||
|
|
||||||
|
//#define PS_ON_PIN xxxx
|
||||||
|
//#define PS_MOSFET_PIN xxxx
|
||||||
|
//#define STEPPER_ENABLE_PIN xxxx
|
||||||
|
//#define STEPPER_INVERT_ENABLE
|
||||||
|
|
||||||
/** \def DEBUG_LED_PIN
|
/** \def DEBUG_LED_PIN
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,18 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** \def CPU_TYPE
|
||||||
|
CPU types a user should be able to choose from in configtool. All
|
||||||
|
commented out.
|
||||||
|
*/
|
||||||
|
//#define CPU_TYPE xxxx
|
||||||
|
|
||||||
|
/** \def F_CPU_OPT
|
||||||
|
CPU clock frequencies a user should be able to choose from in configtool.
|
||||||
|
All commented out.
|
||||||
|
*/
|
||||||
|
//#define F_CPU_OPT xxxx
|
||||||
|
|
||||||
/** \def F_CPU
|
/** \def F_CPU
|
||||||
CPU clock rate
|
CPU clock rate
|
||||||
*/
|
*/
|
||||||
|
|
@ -285,6 +297,9 @@
|
||||||
or adjust your electronics to suit this
|
or adjust your electronics to suit this
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
//#define TX_ENABLE_PIN xxxx
|
||||||
|
//#define RX_ENABLE_PIN xxxx
|
||||||
|
|
||||||
#define X_STEP_PIN DIO29
|
#define X_STEP_PIN DIO29
|
||||||
#define X_DIR_PIN DIO28
|
#define X_DIR_PIN DIO28
|
||||||
#define X_MIN_PIN DIO0
|
#define X_MIN_PIN DIO0
|
||||||
|
|
@ -397,6 +412,12 @@
|
||||||
// #define TEMP_PT100
|
// #define TEMP_PT100
|
||||||
// #define TEMP_INTERCOM
|
// #define TEMP_INTERCOM
|
||||||
|
|
||||||
|
/** \def TEMP_SENSOR_PIN
|
||||||
|
Temperature sensor pins a user should be able to choose from in configtool.
|
||||||
|
All commented out.
|
||||||
|
*/
|
||||||
|
//#define TEMP_SENSOR_PIN xxxx
|
||||||
|
|
||||||
/***************************************************************************\
|
/***************************************************************************\
|
||||||
* *
|
* *
|
||||||
* Define your temperature sensors here. One line for each sensor, only *
|
* Define your temperature sensors here. One line for each sensor, only *
|
||||||
|
|
@ -431,6 +452,14 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, AIO0, THERMISTOR_EXTRUDER)
|
||||||
* *
|
* *
|
||||||
\***************************************************************************/
|
\***************************************************************************/
|
||||||
|
|
||||||
|
/** \def REPORT_TARGET_TEMPS
|
||||||
|
With this enabled, M105 commands will return the current temperatures along
|
||||||
|
with the target temps, separated by a slash: ok T:xxx.x/xxx.x B:xxx.x/xxx.x
|
||||||
|
With this disabled, only temps will be returned: ok T:xxx.x B:xxx.x
|
||||||
|
Enabling adds 78 bytes to the image.
|
||||||
|
*/
|
||||||
|
#define REPORT_TARGET_TEMPS
|
||||||
|
|
||||||
/** \def HEATER_SANITY_CHECK
|
/** \def HEATER_SANITY_CHECK
|
||||||
check if heater responds to changes in target temperature, disable and spit errors if not
|
check if heater responds to changes in target temperature, disable and spit errors if not
|
||||||
largely untested, please comment in forum if this works, or doesn't work for you!
|
largely untested, please comment in forum if this works, or doesn't work for you!
|
||||||
|
|
@ -474,6 +503,12 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, AIO0, THERMISTOR_EXTRUDER)
|
||||||
#define DEFINE_HEATER(...)
|
#define DEFINE_HEATER(...)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/** \def HEATER_PIN
|
||||||
|
Heater pins a user should be able to choose from in configtool. All
|
||||||
|
commented out.
|
||||||
|
*/
|
||||||
|
//#define HEATER_PIN xxxx
|
||||||
|
|
||||||
// name pin invert pwm
|
// name pin invert pwm
|
||||||
DEFINE_HEATER(extruder, DIO4, 0, 1)
|
DEFINE_HEATER(extruder, DIO4, 0, 1)
|
||||||
DEFINE_HEATER(bed, DIO3, 0, 1)
|
DEFINE_HEATER(bed, DIO3, 0, 1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue