summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorkliment <kliment.yanev@gmail.com>2011-04-03 20:28:55 +0200
committerkliment <kliment.yanev@gmail.com>2011-04-03 20:28:55 +0200
commitfcd6fe728c54452d19a5df7a0ffb8758a88ac720 (patch)
treed899db1be80ba40edaf4e45abe580e3f21a0c75b /README
parent646684a5e4a38d520d4ac84ba7b511a50c96ddfb (diff)
Corrections to README from caru's commit
Diffstat (limited to 'README')
-rw-r--r--README9
1 files changed, 6 insertions, 3 deletions
diff --git a/README b/README
index daff570..ed338c9 100644
--- a/README
+++ b/README
@@ -4,11 +4,14 @@ This work is licensed under the GNU GPL v3 or (at the user's discretion) any lat
It is based on Tonokips's firmware, which was licensed under GPL v2 or later.
-WARNING: The configuration file now has a value to set the wanted temperature table file. If you copy and paste a temperature file from older versions, make sure that the configuration is pointing to it. For example:
+The configuration file now has an option to set the wanted temperature table file. If you copy and paste a temperature file from older versions, make sure that the configuration is pointing to it. For example:
#include "ThermistorTable.h"
-WARNING_2: In addition, you can optionally use a different thermistor table for hot-end and bed. To do so, comment the following line in configuration.h:
+In addition, you can optionally use a different thermistor table for hot-end and bed. To do so, comment out the following lines in configuration.h:
+#define BNUMTEMPS NUMPTEMPS
#define bedtemptable temptable
Then add a line pointing to your second thermistor table, for example:
#include "BedThermistorTable.h"
-Finally, make sure that the nozzle thermistor table, inside ThermistorTable.h in this case, is defined as "temptable" and that the bed thermistor table is defined as "bedtemptable".
+Finally, make sure that the nozzle thermistor table, inside ThermistorTable.h in this case, is defined as "temptable" and that the bed thermistor table is defined as "bedtemptable", and that the number of temps is defined as NUMTEMPS for the heater and BNUMTEMPS for the bed.
+
+There are examples of all these configurations in the configuration.h file. Please look at them before you change anything.