chiark / gitweb /
removed some debugging comments
authorBernhard Kubicek <kubicek@gmx.at>
Fri, 18 Nov 2011 21:20:53 +0000 (22:20 +0100)
committerBernhard Kubicek <kubicek@gmx.at>
Fri, 18 Nov 2011 21:20:53 +0000 (22:20 +0100)
Marlin/Marlin.pde

index db513613989901397219cf9178ee66126795d72c..18f382c8c264fa5ec33754e419d110e53a353f5b 100644 (file)
@@ -392,15 +392,8 @@ inline void get_command()
   while( !card.eof()  && buflen < BUFSIZE) {
     int16_t n=card.get();
     serial_char = (char)n;
-//     Serial.print((char)serial_char);
-//     Serial.print(" ");
-//     Serial.println((int)serial_count);
     if(serial_char == '\n' || serial_char == '\r' || serial_char == ':' || serial_count >= (MAX_CMD_SIZE - 1)||n==-1) 
     {
-//       if(serial_char == '\n' || serial_char == '\r' )
-//         Serial.println("newline or :");
-//       if(serial_count >= (MAX_CMD_SIZE - 1))
-//         Serial.println("too long line");
       if(card.eof()){
         card.sdprinting = false;
         SERIAL_PROTOCOLLNPGM("Done printing file");
@@ -420,7 +413,6 @@ inline void get_command()
          comment_mode = false; //for new command
       if(!serial_count)
       {
-//     Serial.println("empty line");
         return; //if empty line
       }
       cmdbuffer[bufindw][serial_count] = 0; //terminate string
@@ -428,8 +420,7 @@ inline void get_command()
         fromsd[bufindw] = true;
         buflen += 1;
         bufindw = (bufindw + 1)%BUFSIZE;
-      }
-     
+      }     
       serial_count = 0; //clear buffer
     }
     else