Browse Source

enable ENSURE_SMOOTH_MOVES

Michael Henke 8 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
 
908
 
909
   // Set the number of grid points per dimension.
909
   // Set the number of grid points per dimension.
910
   // Works best with 5 or more points in each dimension.
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
 // Set the boundaries for probing (where the probe can reach).
914
 // Set the boundaries for probing (where the probe can reach).
915
 #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 15)
915
 #define DELTA_PROBEABLE_RADIUS (DELTA_PRINTABLE_RADIUS - 15)
1042
 // Preheat Constants
1042
 // Preheat Constants
1043
 #define PREHEAT_1_TEMP_HOTEND 180
1043
 #define PREHEAT_1_TEMP_HOTEND 180
1044
 #define PREHEAT_1_TEMP_BED     70
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
 #define PREHEAT_2_TEMP_HOTEND 240
1047
 #define PREHEAT_2_TEMP_HOTEND 240
1048
 #define PREHEAT_2_TEMP_BED    100
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
 // Nozzle Park -- EXPERIMENTAL
1052
 // Nozzle Park -- EXPERIMENTAL

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

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

Loading…
Cancel
Save