Fix for AD595 as bed temp sensor

This commit is contained in:
kliment 2011-07-11 15:56:17 +02:00
parent 14939da092
commit 1c4cbe4da7

View file

@ -667,16 +667,16 @@ inline void process_commands()
if (code_seen('S')) target_bed_raw = temp2analogBed(code_value());
break;
case 105: // M105
#if (TEMP_0_PIN > -1) || defined (HEATER_USES_MAX6675)
#if (TEMP_0_PIN > -1) || defined (HEATER_USES_MAX6675)|| defined HEATER_USES_AD595
tt = analog2temp(current_raw);
#endif
#if TEMP_1_PIN > -1
#if TEMP_1_PIN > -1 || defined BED_USES_AD595
bt = analog2tempBed(current_bed_raw);
#endif
#if (TEMP_0_PIN > -1) || defined (HEATER_USES_MAX6675)
#if (TEMP_0_PIN > -1) || defined (HEATER_USES_MAX6675) || defined HEATER_USES_AD595
Serial.print("ok T:");
Serial.print(tt);
#if TEMP_1_PIN > -1
#if TEMP_1_PIN > -1 || defined BED_USES_AD595
Serial.print(" B:");
Serial.println(bt);
#else