Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

Commit

Permalink
Fix config files which didn't pass the new regression test.
Browse files Browse the repository at this point in the history
All the changes are pretty much dummies, no functional change
anywhere.
  • Loading branch information
Traumflug committed Mar 27, 2016
1 parent f0604b5 commit 595dd01
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/board.gen3.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
commented out.
*/
//#define HEATER_PIN xxxx

/** \def DEFINE_HEATER
Define your heaters and devices here.
Expand Down
4 changes: 4 additions & 0 deletions config/board.sinaptec-at328-02.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@
//#define E_INVERT_DIR
#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
Expand Down
35 changes: 35 additions & 0 deletions testcases/config.h.Profiling
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@
#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
CPU clock rate
*/
Expand Down Expand Up @@ -285,6 +297,9 @@
or adjust your electronics to suit this
*/

//#define TX_ENABLE_PIN xxxx
//#define RX_ENABLE_PIN xxxx

#define X_STEP_PIN DIO29
#define X_DIR_PIN DIO28
#define X_MIN_PIN DIO0
Expand Down Expand Up @@ -397,6 +412,12 @@
// #define TEMP_PT100
// #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 *
Expand Down Expand Up @@ -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
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!
Expand Down Expand Up @@ -474,6 +503,12 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, AIO0, THERMISTOR_EXTRUDER)
#define DEFINE_HEATER(...)
#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
DEFINE_HEATER(extruder, DIO4, 0, 1)
DEFINE_HEATER(bed, DIO3, 0, 1)
Expand Down

0 comments on commit 595dd01

Please sign in to comment.