Browse Source

enable ENSURE_SMOOTH_MOVES

Michael Henke 7 years ago
parent
commit
47729918fc
No account linked to committer's email address

+ 4
- 4
Marlin/example_configurations/delta/flsun_kossel_mini/Configuration.h View File

@@ -908,8 +908,8 @@
908 908
 
909 909
   // Set the number of grid points per dimension.
910 910
   // Works best with 5 or more points in each dimension.
911
-  #define ABL_GRID_POINTS_X 9
912
-  #define ABL_GRID_POINTS_Y ABL_GRID_POINTS_X
911
+  #define ABL_GRID_MAX_POINTS_X 9
912
+  #define ABL_GRID_MAX_POINTS_Y ABL_GRID_MAX_POINTS_X
913 913
 
914 914
 // Set the boundaries for probing (where the probe can reach).
915 915
 #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 15)
@@ -1042,11 +1042,11 @@
1042 1042
 // Preheat Constants
1043 1043
 #define PREHEAT_1_TEMP_HOTEND 180
1044 1044
 #define PREHEAT_1_TEMP_BED     70
1045
-#define PREHEAT_1_FAN_SPEED   255 // Value from 0 to 255
1045
+#define PREHEAT_1_FAN_SPEED   0 // Value from 0 to 255
1046 1046
 
1047 1047
 #define PREHEAT_2_TEMP_HOTEND 240
1048 1048
 #define PREHEAT_2_TEMP_BED    100
1049
-#define PREHEAT_2_FAN_SPEED   255 // Value from 0 to 255
1049
+#define PREHEAT_2_FAN_SPEED   0 // Value from 0 to 255
1050 1050
 
1051 1051
 //
1052 1052
 // Nozzle Park -- EXPERIMENTAL

+ 3
- 2
Marlin/example_configurations/delta/flsun_kossel_mini/Configuration_adv.h View File

@@ -217,12 +217,13 @@
217 217
  * Multiple extruders can be assigned to the same pin in which case
218 218
  * the fan will turn on when any selected extruder is above the threshold.
219 219
  */
220
+
220 221
 #define E0_AUTO_FAN_PIN -1
221 222
 #define E1_AUTO_FAN_PIN -1
222 223
 #define E2_AUTO_FAN_PIN -1
223 224
 #define E3_AUTO_FAN_PIN -1
224 225
 #define EXTRUDER_AUTO_FAN_TEMPERATURE 50
225
-#define EXTRUDER_AUTO_FAN_SPEED   255  // == full speed
226
+#define EXTRUDER_AUTO_FAN_SPEED   255  // 255 == full speed
226 227
 
227 228
 // Define a pin to turn case light on/off
228 229
 //#define CASE_LIGHT_PIN 4
@@ -529,7 +530,7 @@
529 530
 //    interrupts (without LCD update). By enforcing a minimum time-per-move, the buffer is prevented from
530 531
 //    draining.
531 532
 //
532
-//#define ENSURE_SMOOTH_MOVES
533
+#define ENSURE_SMOOTH_MOVES
533 534
 #if ENABLED(ENSURE_SMOOTH_MOVES)
534 535
   //#define ALWAYS_ALLOW_MENU      // If enabled, the menu will always be responsive.
535 536
                                    // WARNING: Menu navigation during short moves may cause stuttering!

Loading…
Cancel
Save