From a3bd2c88b715e4b8c221c4e0debc7fdaa60b2f15 Mon Sep 17 00:00:00 2001 From: kliment Date: Mon, 28 Mar 2011 18:15:38 +0200 Subject: Added temp tables to configuration. Made dual temp tables optional. Re-enabled min-z endstop in default config. --- Tonokip_Firmware/configuration.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'Tonokip_Firmware/configuration.h') 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 -- cgit v1.2.1