Merge pull request #37 from T3P3/Emergency_stop

M112 Emergency stop
This commit is contained in:
Tony 2014-04-06 23:44:17 +01:00
commit 61bfc38979
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,5 +1,6 @@
*.d
*.o
.*
Release/*
!Release/RepRapFirmware*.bin
*~

View file

@ -1512,6 +1512,7 @@ bool GCodes::ActOnGcode(GCodeBuffer *gb)
break;
case 112: // Emergency stop - acted upon in Webserver
reprap.EmergencyStop();
break;
case 114: // Deprecated

View file

@ -551,7 +551,7 @@ class Platform
uint16_t zProbeReadings[NumZProbeReadingsAveraged];
int zProbeADValue;
float zProbeStopHeight;
bool zProbeEnable;
// AXES
void InitZProbe();