diff options
author | kintel <kintel@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2009-03-05 20:54:33 +0000 |
---|---|---|
committer | kintel <kintel@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2009-03-05 20:54:33 +0000 |
commit | 1735dcb0dc96cc8aec051004bb7abbb1db22b659 (patch) | |
tree | a57c433b0707563985fd64f2f9f832ad71fb7240 | |
parent | 1875655a78563610b42fac8e1911c115e63163d0 (diff) | |
download | reprap-backup-1735dcb0dc96cc8aec051004bb7abbb1db22b659.tar.gz reprap-backup-1735dcb0dc96cc8aec051004bb7abbb1db22b659.zip |
TEST_MACHINE compile fix by Ian Eagland
git-svn-id: https://reprap.svn.sourceforge.net/svnroot/reprap@2634 cb376a5e-1013-0410-a455-b6b1f9ac8223
-rw-r--r-- | trunk/reprap/firmware/GCode_Interpreter/GCode_Interpreter.pde | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/trunk/reprap/firmware/GCode_Interpreter/GCode_Interpreter.pde b/trunk/reprap/firmware/GCode_Interpreter/GCode_Interpreter.pde index f992b37e..ae039eb1 100644 --- a/trunk/reprap/firmware/GCode_Interpreter/GCode_Interpreter.pde +++ b/trunk/reprap/firmware/GCode_Interpreter/GCode_Interpreter.pde @@ -65,7 +65,7 @@ void loop() comms_test(); #else - + byte c = 0; if (Serial.available() > 0) { c = Serial.read(); @@ -114,7 +114,6 @@ void loop() Serial.println(" 0..9 - select extruder"); Serial.println(" s - stop current test at the end of its cycle then print this list\n\n"); Serial.print("Command: "); - c = 0; } } |