Quellcode durchsuchen

Fix typo in MANUAL_HOME_POSITION (plural S missing) and reduce BLOCK_BUFFER_SIZE because 64 wasn't working for some reason.

Johann Rocholl vor 12 Jahren
Ursprung
Commit
931a0052ea
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      Marlin/Configuration_adv.h

+ 2
- 2
Marlin/Configuration_adv.h Datei anzeigen

@@ -78,7 +78,7 @@
78 78
 
79 79
 //// AUTOSET LOCATIONS OF LIMIT SWITCHES
80 80
 //// Added by ZetaPhoenix 09-15-2012
81
-#ifdef MANUAL_HOME_POSITION  //Use manual limit switch locations
81
+#ifdef MANUAL_HOME_POSITIONS  //Use manual limit switch locations
82 82
   #define X_HOME_POS MANUAL_X_HOME_POS
83 83
   #define Y_HOME_POS MANUAL_Y_HOME_POS
84 84
   #define Z_HOME_POS MANUAL_Z_HOME_POS
@@ -250,7 +250,7 @@ const unsigned int dropsegments=5; //everything with less than this number of st
250 250
 #if defined SDSUPPORT
251 251
   #define BLOCK_BUFFER_SIZE 16   // SD,LCD,Buttons take more memory, block buffer needs to be smaller
252 252
 #else
253
-  #define BLOCK_BUFFER_SIZE 64 // maximize block buffer
253
+  #define BLOCK_BUFFER_SIZE 16 // maximize block buffer
254 254
 #endif
255 255
 
256 256
 

Laden…
Abbrechen
Speichern