summaryrefslogtreecommitdiff
path: root/Tonokip_Firmware/configuration.h
diff options
context:
space:
mode:
authorkliment <kliment.yanev@gmail.com>2011-03-28 18:15:38 +0200
committerkliment <kliment.yanev@gmail.com>2011-03-28 18:15:38 +0200
commita3bd2c88b715e4b8c221c4e0debc7fdaa60b2f15 (patch)
treeb40966169301ff82c3bc85a7e08b34226762fa40 /Tonokip_Firmware/configuration.h
parent6d4dae1115cebc5e0ec986edd5f6f795e24b729c (diff)
Added temp tables to configuration. Made dual temp tables optional. Re-enabled min-z endstop in default config.
Diffstat (limited to 'Tonokip_Firmware/configuration.h')
-rw-r--r--Tonokip_Firmware/configuration.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h
index b7981e4..50c61dc 100644
--- a/Tonokip_Firmware/configuration.h
+++ b/Tonokip_Firmware/configuration.h
@@ -4,6 +4,8 @@
// NO RS485/EXTRUDER CONTROLLER SUPPORT
// PLEASE VERIFY PIN ASSIGNMENTS FOR YOUR CONFIGURATION!!!!!!!
#define MOTHERBOARD 3 // ATMEGA168 0, SANGUINO 1, MOTHERBOARD = 2, MEGA 3, ATMEGA328 4
+
+//Comment out to disable SD support
#define SDSUPPORT 1
// THERMOCOUPLE SUPPORT UNTESTED... USE WITH CAUTION!!!!
@@ -44,6 +46,22 @@ const bool INVERT_Y_DIR = false;
const bool INVERT_Z_DIR = true;
const bool INVERT_E_DIR = false;
+//Thermistor settings:
+
+//Uncomment for 100k thermistor
+//#include "ThermistorTable_100k.h"
+//#include "BedThermistorTable_100k.h"
+
+//Uncomment for 200k thermistor
+//#include "ThermistorTable_200k.h"
+//#include "BedThermistorTable_200k.h"
+
+//Identical thermistors on heater and bed:
+#include "ThermistorTable_200k.h"
+//#include "ThermistorTable_100k.h"
+#define BNUMTEMPS NUMTEMPS
+#define bedtemptable temptable
+
//Endstop Settings
#define ENDSTOPPULLUPS 1
const bool ENDSTOPS_INVERTING = false;
@@ -55,4 +73,6 @@ const int Z_MAX_LENGTH = 100;
#define BAUDRATE 115200
+
+
#endif