Merge remote-tracking branch 'origin/Marlin_v1' into Marlin_v1

Conflicts:
	Marlin/Configuration.h
	Marlin/Marlin.pde
This commit is contained in:
Erik van der Zalm
2011-11-18 19:04:09 +01:00
7 changed files with 42 additions and 18 deletions

View File

@ -37,6 +37,7 @@
#include "temperature.h"
#include "motion_control.h"
#include "cardreader.h"
#include "watchdog.h"
#define VERSION_STRING "1.0.0 Alpha 1"
@ -193,6 +194,12 @@ extern "C"{
}
//adds an command to the main command buffer
//thats really done in a non-safe way.
//needs overworking someday
@ -235,6 +242,7 @@ void setup()
tp_init(); // Initialize temperature loop
plan_init(); // Initialize planner;
st_init(); // Initialize stepper;
wd_init();
}
@ -659,7 +667,8 @@ inline void process_commands()
break;
case 105: // M105
//SERIAL_ECHOLN(freeMemory());
//test watchdog:
//delay(20000);
#if (TEMP_0_PIN > -1) || defined (HEATER_USES_AD595)
SERIAL_PROTOCOLPGM("ok T:");
SERIAL_PROTOCOL( degHotend0());