浏览代码

reverting few changes,

PavelSindler 7 年之前
父节点
当前提交
26cd35a8cb
共有 3 个文件被更改,包括 15 次插入16 次删除
  1. 13 13
      Firmware/Marlin_main.cpp
  2. 1 1
      Firmware/cardreader.cpp
  3. 1 2
      Firmware/cardreader.h

+ 13 - 13
Firmware/Marlin_main.cpp

@@ -1405,19 +1405,6 @@ void proc_commands() {
 	}
 }
 
-bool check_commands() {
-	bool end_command_found = false;
-	
-	if (buflen)
-	{
-		if ((code_seen("M84")) || (code_seen("M 84"))) end_command_found = true;
-		if (!cmdbuffer_front_already_processed)
-			cmdqueue_pop_front();
-		cmdbuffer_front_already_processed = false;
-	}
-	return end_command_found;
-}
-
 void get_command()
 {
     // Test and reserve space for the new command string.
@@ -1905,6 +1892,19 @@ static float probe_pt(float x, float y, float z_before) {
   }
 #endif // LIN_ADVANCE
 
+bool check_commands() {
+	  bool end_command_found = false;
+
+	  if (buflen)
+	  {
+		  if ((code_seen("M84")) || (code_seen("M 84"))) end_command_found = true;
+		  if (!cmdbuffer_front_already_processed)
+			  cmdqueue_pop_front();
+		  cmdbuffer_front_already_processed = false;
+	  }
+	  return end_command_found;
+}
+
 void homeaxis(int axis) {
 #define HOMEAXIS_DO(LETTER) \
   ((LETTER##_MIN_PIN > -1 && LETTER##_HOME_DIR==-1) || (LETTER##_MAX_PIN > -1 && LETTER##_HOME_DIR==1))

+ 1 - 1
Firmware/cardreader.cpp

@@ -970,7 +970,7 @@ void CardReader::printingHasFinished()
       if(SD_FINISHED_STEPPERRELEASE)
       {
           //finishAndDisableSteppers();
-          //enquecommand_P(PSTR(SD_FINISHED_RELEASECOMMAND));
+          enquecommand_P(PSTR(SD_FINISHED_RELEASECOMMAND));
       }
       autotempShutdown();
 	  #ifdef SDCARD_SORT_ALPHA

+ 1 - 2
Firmware/cardreader.h

@@ -74,7 +74,6 @@ public:
   char longFilename[LONG_FILENAME_LENGTH];
   bool filenameIsDir;
   int lastnr; //last number of the autostart;
-  uint32_t sdpos;
 private:
   SdFile root,*curDir,workDir,workDirParents[MAX_DIR_DEPTH];
   uint16_t workDirDepth;
@@ -136,7 +135,7 @@ private:
   uint32_t filesize;
   //int16_t n;
   unsigned long autostart_atmillis;
-  //uint32_t sdpos ;
+  uint32_t sdpos ;
 
   bool autostart_stilltocheck; //the sd start is delayed, because otherwise the serial cannot answer fast enought to make contact with the hostsoftware.