浏览代码

Merge branch 'Development' into cleanup_ultralcd

Latest upstream changes
Scott Lahteine 9 年前
父节点
当前提交
df8c51528f
共有 3 个文件被更改,包括 12 次插入1 次删除
  1. 1
    1
      ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/boards.txt
  2. 1
    0
      Marlin/Configuration.h
  3. 10
    0
      Marlin/thermistortables.h

+ 1
- 1
ArduinoAddons/Arduino_1.5.x/hardware/marlin/avr/boards.txt 查看文件

@@ -33,7 +33,7 @@ rambo.build.variant=rambo
33 33
 ########################################
34 34
 sanguino.name=Sanguino
35 35
 
36
-sanguino.upload.tool=ardunio:avrdude
36
+sanguino.upload.tool=arduino:avrdude
37 37
 sanguino.upload.protocol=stk500
38 38
 sanguino.upload.maximum_size=131072
39 39
 sanguino.upload.speed=57600

+ 1
- 0
Marlin/Configuration.h 查看文件

@@ -118,6 +118,7 @@ Here are some standard links for getting your machine calibrated:
118 118
 // 1010 is Pt1000 with 1k pullup (non standard)
119 119
 // 147 is Pt100 with 4k7 pullup
120 120
 // 110 is Pt100 with 1k pullup (non standard)
121
+// 999 is a Dummy Table. It will ALWAYS read 25C.. Use it for Testing or Development purposes. NEVER for production machine.
121 122
 
122 123
 #define TEMP_SENSOR_0 -1
123 124
 #define TEMP_SENSOR_1 -1

+ 10
- 0
Marlin/thermistortables.h 查看文件

@@ -1095,6 +1095,16 @@ const short temptable_1047[][2] PROGMEM = {
1095 1095
 };
1096 1096
 #endif
1097 1097
 
1098
+#if (THERMISTORHEATER_0 == 999) || (THERMISTORHEATER_1 == 999) || (THERMISTORHEATER_2 == 999) || (THERMISTORHEATER_3 == 999) || (THERMISTORBED == 999) //User defined table
1099
+// Dummy Thermistor table.. It will ALWAYS read 25C.
1100
+const short temptable_999[][2] PROGMEM = {
1101
+   {1*OVERSAMPLENR, 25},
1102
+   {1023*OVERSAMPLENR, 25}
1103
+};
1104
+#endif
1105
+
1106
+
1107
+
1098 1108
 #define _TT_NAME(_N) temptable_ ## _N
1099 1109
 #define TT_NAME(_N) _TT_NAME(_N)
1100 1110
 

正在加载...
取消
保存