Catch by RobertFach: compatibility option for RepRap Host 20110509.

This commit is contained in:
Markus Hitter 2011-08-30 11:54:38 +02:00
parent 177dd73a43
commit 58f4678253
6 changed files with 15 additions and 6 deletions

View File

@ -342,7 +342,8 @@ DEFINE_TEMP_SENSOR(bed, TT_INTERCOM, 1, 0)
Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010 Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010
*/ */
// #define REPRAP_HOST_COMPATIBILITY 19750101 // #define REPRAP_HOST_COMPATIBILITY 19750101
#define REPRAP_HOST_COMPATIBILITY 20100806 // #define REPRAP_HOST_COMPATIBILITY 20100806
// #define REPRAP_HOST_COMPATIBILITY 20110509
// #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break> // #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break>
/** /**

View File

@ -320,7 +320,8 @@ DEFINE_HEATER(extruder, PD6)
Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010 Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010
*/ */
// #define REPRAP_HOST_COMPATIBILITY 19750101 // #define REPRAP_HOST_COMPATIBILITY 19750101
#define REPRAP_HOST_COMPATIBILITY 20100806 // #define REPRAP_HOST_COMPATIBILITY 20100806
// #define REPRAP_HOST_COMPATIBILITY 20110509
// #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break> // #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break>
/** /**

View File

@ -327,7 +327,8 @@ DEFINE_HEATER(bed, PB4)
Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010 Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010
*/ */
// #define REPRAP_HOST_COMPATIBILITY 19750101 // #define REPRAP_HOST_COMPATIBILITY 19750101
#define REPRAP_HOST_COMPATIBILITY 20100806 // #define REPRAP_HOST_COMPATIBILITY 20100806
// #define REPRAP_HOST_COMPATIBILITY 20110509
// #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break> // #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break>
/** /**

View File

@ -334,7 +334,8 @@ DEFINE_HEATER(fan, PH6)
Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010 Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010
*/ */
// #define REPRAP_HOST_COMPATIBILITY 19750101 // #define REPRAP_HOST_COMPATIBILITY 19750101
#define REPRAP_HOST_COMPATIBILITY 20100806 // #define REPRAP_HOST_COMPATIBILITY 20100806
// #define REPRAP_HOST_COMPATIBILITY 20110509
// #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break> // #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break>
/** /**

View File

@ -335,7 +335,8 @@ DEFINE_HEATER( extruder, PB4)
Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010 Undefine it for best human readability, set it to an old date for compatibility with hosts before August 2010
*/ */
// #define REPRAP_HOST_COMPATIBILITY 19750101 // #define REPRAP_HOST_COMPATIBILITY 19750101
#define REPRAP_HOST_COMPATIBILITY 20100806 // #define REPRAP_HOST_COMPATIBILITY 20100806
// #define REPRAP_HOST_COMPATIBILITY 20110509
// #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break> // #define REPRAP_HOST_COMPATIBILITY <date of next RepRap Host compatibility break>
/** /**

6
temp.c
View File

@ -349,7 +349,11 @@ void temp_print(temp_sensor_t index) {
c = (temp_sensors_runtime[index].last_read_temp & 3) * 25; c = (temp_sensors_runtime[index].last_read_temp & 3) * 25;
sersendf_P(PSTR("\nT:%u.%u"), temp_sensors_runtime[index].last_read_temp >> 2, c); #if REPRAP_HOST_COMPATIBILITY >= 20110509
sersendf_P(PSTR("T:%u.%u"), temp_sensors_runtime[index].last_read_temp >> 2, c);
#else
sersendf_P(PSTR("\nT:%u.%u"), temp_sensors_runtime[index].last_read_temp >> 2, c);
#endif
#ifdef HEATER_BED #ifdef HEATER_BED
uint8_t b = 0; uint8_t b = 0;
b = (temp_sensors_runtime[HEATER_BED].last_read_temp & 3) * 25; b = (temp_sensors_runtime[HEATER_BED].last_read_temp & 3) * 25;