|
70 | 70 |
|
71 | 71 | // Choose the name from boards.h that matches your setup |
72 | 72 | #ifndef MOTHERBOARD |
73 | | - #define MOTHERBOARD BOARD_MKS_GEN_13 |
| 73 | + #define MOTHERBOARD BOARD_MKS_GEN_L |
74 | 74 | #endif |
75 | 75 |
|
76 | 76 | // @section serial |
|
1362 | 1362 | * Override with M92 (when enabled below) |
1363 | 1363 | * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]] |
1364 | 1364 | */ |
1365 | | -#define DEFAULT_AXIS_STEPS_PER_UNIT { 100, 100, 800, 94 } |
| 1365 | +#define DEFAULT_AXIS_STEPS_PER_UNIT { 100, 100, 800, 96 } |
1366 | 1366 |
|
1367 | 1367 | /** |
1368 | 1368 | * Enable support for M92. Disable to save at least ~530 bytes of flash. |
|
1374 | 1374 | * Override with M203 |
1375 | 1375 | * X, Y, Z [, I [, J [, K...]]], E0 [, E1[, E2...]] |
1376 | 1376 | */ |
1377 | | -#define DEFAULT_MAX_FEEDRATE { 150, 150, 4, 25 } |
| 1377 | +#define DEFAULT_MAX_FEEDRATE { 150, 150, 5, 25 } |
1378 | 1378 |
|
1379 | 1379 | //#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2 |
1380 | 1380 | #if ENABLED(LIMITED_MAX_FR_EDITING) |
|
1402 | 1402 | * M204 R Retract Acceleration |
1403 | 1403 | * M204 T Travel Acceleration |
1404 | 1404 | */ |
1405 | | -#define DEFAULT_ACCELERATION 400 // X, Y, Z and E acceleration for printing moves |
1406 | | -#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts |
1407 | | -#define DEFAULT_TRAVEL_ACCELERATION 600 // X, Y, Z acceleration for travel (non printing) moves |
| 1405 | +#define DEFAULT_ACCELERATION 800 // X, Y, Z and E acceleration for printing moves |
| 1406 | +#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts |
| 1407 | +#define DEFAULT_TRAVEL_ACCELERATION 1000 // X, Y, Z acceleration for travel (non printing) moves |
1408 | 1408 |
|
1409 | 1409 | /** |
1410 | 1410 | * Default Jerk limits (mm/s) |
|
1414 | 1414 | * When changing speed and direction, if the difference is less than the |
1415 | 1415 | * value set here, it may happen instantaneously. |
1416 | 1416 | */ |
1417 | | -// P905H could work with classic jerk too |
1418 | | -//#define CLASSIC_JERK |
| 1417 | +// P905H should work with classic jerk |
| 1418 | +#define CLASSIC_JERK |
1419 | 1419 | #if ENABLED(CLASSIC_JERK) |
1420 | 1420 | #define DEFAULT_XJERK 10.0 |
1421 | | - #define DEFAULT_YJERK 10.0 |
| 1421 | + #define DEFAULT_YJERK 8.0 |
1422 | 1422 | #define DEFAULT_ZJERK 0.3 |
1423 | | - #define DEFAULT_EJERK 2.5 |
| 1423 | + #define DEFAULT_EJERK 10.0 |
1424 | 1424 | //#define DEFAULT_IJERK 0.3 |
1425 | 1425 | //#define DEFAULT_JJERK 0.3 |
1426 | 1426 | //#define DEFAULT_KJERK 0.3 |
|
1748 | 1748 |
|
1749 | 1749 | // Most probes should stay away from the edges of the bed, but |
1750 | 1750 | // with NOZZLE_AS_PROBE this can be negative for a wider probing area. |
1751 | | -#define PROBING_MARGIN 20 |
| 1751 | +#define PROBING_MARGIN 35 |
1752 | 1752 |
|
1753 | 1753 | // X and Y axis travel speed between probes. |
1754 | 1754 | // Leave undefined to use the average of the current XY homing feedrate. |
|
1866 | 1866 | //#define DELAY_BEFORE_PROBING 200 // (ms) To prevent vibrations from triggering piezo sensors |
1867 | 1867 |
|
1868 | 1868 | // Require minimum nozzle and/or bed temperature for probing |
1869 | | -//#define PREHEAT_BEFORE_PROBING |
| 1869 | +#define PREHEAT_BEFORE_PROBING |
1870 | 1870 | #if ENABLED(PREHEAT_BEFORE_PROBING) |
1871 | | - #define PROBING_NOZZLE_TEMP 120 // (°C) Only applies to E0 at this time |
1872 | | - #define PROBING_BED_TEMP 50 |
| 1871 | + #define PROBING_NOZZLE_TEMP 100 // (°C) Only applies to E0 at this time |
| 1872 | + #define PROBING_BED_TEMP 60 |
1873 | 1873 | #endif |
1874 | 1874 |
|
1875 | 1875 | // @section stepper drivers |
|
2585 | 2585 | #define PREHEAT_1_FAN_SPEED 0 // Value from 0 to 255 |
2586 | 2586 |
|
2587 | 2587 | #define PREHEAT_2_LABEL "ABS" |
2588 | | -#define PREHEAT_2_TEMP_HOTEND 230 |
| 2588 | +#define PREHEAT_2_TEMP_HOTEND 200 |
2589 | 2589 | #define PREHEAT_2_TEMP_BED 100 |
2590 | 2590 | #define PREHEAT_2_TEMP_CHAMBER 35 |
2591 | 2591 | #define PREHEAT_2_FAN_SPEED 0 // Value from 0 to 255 |
|
0 commit comments