|
137 | 137 | * THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD |
138 | 138 | */ |
139 | 139 | #if ENABLED(THERMAL_PROTECTION_HOTENDS) |
140 | | - #define THERMAL_PROTECTION_PERIOD 40 // Seconds |
| 140 | + #define THERMAL_PROTECTION_PERIOD 60 // Seconds |
141 | 141 | #define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius |
142 | 142 |
|
143 | 143 | //#define ADAPTIVE_FAN_SLOWING // Slow part cooling fan if temperature drops |
|
157 | 157 | * and/or decrease WATCH_TEMP_INCREASE. WATCH_TEMP_INCREASE should not be set |
158 | 158 | * below 2. |
159 | 159 | */ |
160 | | - #define WATCH_TEMP_PERIOD 20 // Seconds |
| 160 | + #define WATCH_TEMP_PERIOD 60 // Seconds |
161 | 161 | #define WATCH_TEMP_INCREASE 2 // Degrees Celsius |
162 | 162 | #endif |
163 | 163 |
|
164 | 164 | /** |
165 | 165 | * Thermal Protection parameters for the bed are just as above for hotends. |
166 | 166 | */ |
167 | 167 | #if ENABLED(THERMAL_PROTECTION_BED) |
168 | | - #define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds |
| 168 | + #define THERMAL_PROTECTION_BED_PERIOD 180 // Seconds |
169 | 169 | #define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius |
170 | 170 |
|
171 | 171 | /** |
172 | 172 | * As described above, except for the bed (M140/M190/M303). |
173 | 173 | */ |
174 | | - #define WATCH_BED_TEMP_PERIOD 60 // Seconds |
| 174 | + #define WATCH_BED_TEMP_PERIOD 180 // Seconds |
175 | 175 | #define WATCH_BED_TEMP_INCREASE 2 // Degrees Celsius |
176 | 176 | #endif |
177 | 177 |
|
|
355 | 355 | * |
356 | 356 | * Define one or both of these to override the default 0-255 range. |
357 | 357 | */ |
358 | | -//#define FAN_MIN_PWM 50 |
| 358 | +#define FAN_MIN_PWM 50 |
359 | 359 | //#define FAN_MAX_PWM 128 |
360 | 360 |
|
361 | 361 | /** |
|
608 | 608 |
|
609 | 609 | // Feature: Switch into SW mode after a deploy. It makes the output pulse longer. Can be useful |
610 | 610 | // in special cases, like noisy or filtered input configurations. |
611 | | - //#define BLTOUCH_FORCE_SW_MODE |
| 611 | + // #define BLTOUCH_FORCE_SW_MODE |
612 | 612 |
|
613 | 613 | /** |
614 | 614 | * Settings for BLTouch Smart 3.0 and 3.1 |
|
902 | 902 | // Change values more rapidly when the encoder is rotated faster |
903 | 903 | #define ENCODER_RATE_MULTIPLIER |
904 | 904 | #if ENABLED(ENCODER_RATE_MULTIPLIER) |
905 | | - #define ENCODER_10X_STEPS_PER_SEC 30 // (steps/s) Encoder rate for 10x speed |
906 | | - #define ENCODER_100X_STEPS_PER_SEC 80 // (steps/s) Encoder rate for 100x speed |
| 905 | + #define ENCODER_5X_STEPS_PER_SEC 30 |
| 906 | + #define ENCODER_10X_STEPS_PER_SEC 80 // (steps/s) Encoder rate for 10x speed |
| 907 | + #define ENCODER_100X_STEPS_PER_SEC 130 // (steps/s) Encoder rate for 100x speed |
907 | 908 | #endif |
908 | 909 |
|
909 | 910 | // Play a beep when the feedrate is changed from the Status Screen |
|
998 | 999 |
|
999 | 1000 | //#define MENU_ADDAUTOSTART // Add a menu option to run auto#.g files |
1000 | 1001 |
|
1001 | | - #define EVENT_GCODE_SD_STOP "G28XY" // G-code to run on Stop Print (e.g., "G28XY" or "G27") |
| 1002 | + #define EVENT_GCODE_SD_STOP "G28XY\nM84" // G-code to run on Stop Print (e.g., "G28XY" or "G27") |
1002 | 1003 |
|
1003 | 1004 | /** |
1004 | 1005 | * Continue after Power-Loss (Creality3D) |
|
1008 | 1009 | * an option on the LCD screen to continue the print from the last-known |
1009 | 1010 | * point in the file. |
1010 | 1011 | */ |
1011 | | - //#define POWER_LOSS_RECOVERY |
| 1012 | + #define POWER_LOSS_RECOVERY |
1012 | 1013 | #if ENABLED(POWER_LOSS_RECOVERY) |
1013 | 1014 | //#define BACKUP_POWER_SUPPLY // Backup power / UPS to move the steppers on power loss |
1014 | 1015 | //#define POWER_LOSS_ZRAISE 2 // (mm) Z axis raise on resume (on power loss with UPS) |
|
1366 | 1367 | * |
1367 | 1368 | * Warning: Does not respect endstops! |
1368 | 1369 | */ |
1369 | | -//#define BABYSTEPPING |
| 1370 | +#define BABYSTEPPING |
1370 | 1371 | #if ENABLED(BABYSTEPPING) |
1371 | 1372 | //#define BABYSTEP_WITHOUT_HOMING |
1372 | 1373 | //#define BABYSTEP_XY // Also enable X/Y Babystepping. Not supported on DELTA! |
1373 | 1374 | #define BABYSTEP_INVERT_Z false // Change if Z babysteps should go the other way |
1374 | | - #define BABYSTEP_MULTIPLICATOR_Z 1 // Babysteps are very small. Increase for faster motion. |
| 1375 | + #define BABYSTEP_MULTIPLICATOR_Z 40 // Babysteps are very small. Increase for faster motion. |
1375 | 1376 | #define BABYSTEP_MULTIPLICATOR_XY 1 |
1376 | 1377 |
|
1377 | 1378 | //#define DOUBLECLICK_FOR_Z_BABYSTEPPING // Double-click on the Status Screen for Z Babystepping. |
|
1387 | 1388 |
|
1388 | 1389 | //#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28 |
1389 | 1390 |
|
1390 | | - //#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping |
| 1391 | + #if HAS_BED_PROBE |
| 1392 | + #define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping |
| 1393 | + #endif |
1391 | 1394 | #if ENABLED(BABYSTEP_ZPROBE_OFFSET) |
1392 | 1395 | //#define BABYSTEP_HOTEND_Z_OFFSET // For multiple hotends, babystep relative Z offsets |
1393 | 1396 | //#define BABYSTEP_ZPROBE_GFX_OVERLAY // Enable graphical overlay on Z-offset editor |
|
1488 | 1491 | // |
1489 | 1492 | // G2/G3 Arc Support |
1490 | 1493 | // |
1491 | | -#define ARC_SUPPORT // Disable this feature to save ~3226 bytes |
| 1494 | +// #define ARC_SUPPORT // Disable this feature to save ~3226 bytes |
1492 | 1495 | #if ENABLED(ARC_SUPPORT) |
1493 | 1496 | #define MM_PER_ARC_SEGMENT 1 // Length of each arc segment |
1494 | 1497 | #define MIN_ARC_SEGMENTS 24 // Minimum number of segments in a complete circle |
|
1529 | 1532 | * |
1530 | 1533 | * Override the default value based on the driver type set in Configuration.h. |
1531 | 1534 | */ |
1532 | | -//#define MINIMUM_STEPPER_POST_DIR_DELAY 650 |
1533 | | -//#define MINIMUM_STEPPER_PRE_DIR_DELAY 650 |
| 1535 | +// #define MINIMUM_STEPPER_POST_DIR_DELAY 30 |
| 1536 | +// #define MINIMUM_STEPPER_PRE_DIR_DELAY 30 |
1534 | 1537 |
|
1535 | 1538 | /** |
1536 | 1539 | * Minimum stepper driver pulse width (in µs) |
|
0 commit comments