summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils <bacardicoke@gmail.com>2011-05-12 23:24:59 +0200
committerNils <bacardicoke@gmail.com>2011-05-12 23:24:59 +0200
commit889d6a7c5b5e715fd49dfb559704ab1dfc009746 (patch)
tree1f4b64531e431bc647b336e93221b9d9d5d715de
parent5ba9e2683c46e10179705629f35dd4d66c68087e (diff)
Removing MCode for overheat protection
-rw-r--r--Tonokip_Firmware/Tonokip_Firmware.pde4
-rw-r--r--Tonokip_Firmware/configuration.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/Tonokip_Firmware/Tonokip_Firmware.pde b/Tonokip_Firmware/Tonokip_Firmware.pde
index 43434b1..c2ad00e 100644
--- a/Tonokip_Firmware/Tonokip_Firmware.pde
+++ b/Tonokip_Firmware/Tonokip_Firmware.pde
@@ -52,7 +52,6 @@
// M92 - Set axis_steps_per_unit - same syntax as G92
// M115 - Capabilities string
// M140 - Set bed target temp
-// M143 - Set maximum hot-end temperature
// M190 - Wait for bed current temp to reach target temp.
// M201 - Set max acceleration in units/s^2 for print moves (M201 X1000 Y1000)
// M202 - Set max acceleration in units/s^2 for travel moves (M202 X1000 Y1000)
@@ -660,9 +659,6 @@ inline void process_commands()
case 140: // M140 set bed temp
if (code_seen('S')) target_bed_raw = temp2analogBed(code_value());
break;
- case 143: // M143 set maximum hotend temperature
- if (code_seen('S')) maxttemp = temp2analog(code_value());
- break;
case 105: // M105
#if (TEMP_0_PIN>-1) || defined (HEATER_USES_MAX6675)
tt=analog2temp(current_raw);
diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h
index de4d04e..47466ae 100644
--- a/Tonokip_Firmware/configuration.h
+++ b/Tonokip_Firmware/configuration.h
@@ -65,7 +65,6 @@ float min_constant_speed_units = 2; // the minimum units of an accelerated move
//When temperature exceeds max temp, your bot will halt.
//This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure!
//You should use MINTEMP for thermistor short/failure protection.
-//Can be customized using M143
//#define MAXTEMP 275
// Select one of these only to define how the nozzle temp is read.