Add files via upload
This commit is contained in:
parent
15afca549a
commit
471e970f12
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* 5000arlin 3D Printer Firmware
|
* Marlin 3D Printer Firmware
|
||||||
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
||||||
*
|
*
|
||||||
* Based on Sprinter and grbl.
|
* Based on Sprinter and grbl.
|
||||||
@ -872,11 +872,11 @@
|
|||||||
* Override with M203
|
* Override with M203
|
||||||
* X, Y, Z, E0 [, E1[, E2...]]
|
* X, Y, Z, E0 [, E1[, E2...]]
|
||||||
*/
|
*/
|
||||||
#define DEFAULT_MAX_FEEDRATE { 500, 500, 10, 30 }
|
#define DEFAULT_MAX_FEEDRATE { 500, 500, 20, 30 }
|
||||||
|
|
||||||
#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2
|
#define LIMITED_MAX_FR_EDITING // Limit edit via M203 or LCD to DEFAULT_MAX_FEEDRATE * 2
|
||||||
#if ENABLED(LIMITED_MAX_FR_EDITING)
|
#if ENABLED(LIMITED_MAX_FR_EDITING)
|
||||||
#define MAX_FEEDRATE_EDIT_VALUES { 600, 600, 20, 50 } // ...or, set your own edit limits
|
#define MAX_FEEDRATE_EDIT_VALUES { 1000, 1000, 40, 60 } // ...or, set your own edit limits
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -895,7 +895,7 @@
|
|||||||
#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
|
#define LIMITED_MAX_ACCEL_EDITING // Limit edit via M201 or LCD to DEFAULT_MAX_ACCELERATION * 2
|
||||||
#if ENABLED(LIMITED_MAX_ACCEL_EDITING)
|
#if ENABLED(LIMITED_MAX_ACCEL_EDITING)
|
||||||
#if ENABLED(HIGH_SPEED_1)
|
#if ENABLED(HIGH_SPEED_1)
|
||||||
#define MAX_ACCEL_EDIT_VALUES { 8000, 8000, 200, 8000 } // ...or, set your own edit limits
|
#define MAX_ACCEL_EDIT_VALUES { 8000, 8000, 8000, 8000 } // ...or, set your own edit limits
|
||||||
#else
|
#else
|
||||||
#define MAX_ACCEL_EDIT_VALUES { 3000, 3000, 100, 3000 } // ...or, set your own edit limits
|
#define MAX_ACCEL_EDIT_VALUES { 3000, 3000, 100, 3000 } // ...or, set your own edit limits
|
||||||
#endif
|
#endif
|
||||||
@ -951,7 +951,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if ENABLED(HIGH_SPEED_1)
|
#if ENABLED(HIGH_SPEED_1)
|
||||||
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
|
#define DEFAULT_EJERK 10.0 // May be used by Linear Advance
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
|
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
|
||||||
#endif
|
#endif
|
||||||
@ -1717,7 +1717,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Homing speeds (mm/min)
|
// Homing speeds (mm/min)
|
||||||
#define HOMING_FEEDRATE_MM_M { (50*60), (50*60), (6*60) }
|
#define HOMING_FEEDRATE_MM_M { (50*60), (50*60), (8*60) }
|
||||||
|
|
||||||
// Validate that endstops are triggered on homing moves
|
// Validate that endstops are triggered on homing moves
|
||||||
#define VALIDATE_HOMING_ENDSTOPS
|
#define VALIDATE_HOMING_ENDSTOPS
|
||||||
|
|||||||
@ -1924,10 +1924,10 @@
|
|||||||
*
|
*
|
||||||
* See https://marlinfw.org/docs/features/lin_advance.html for full instructions.
|
* See https://marlinfw.org/docs/features/lin_advance.html for full instructions.
|
||||||
*/
|
*/
|
||||||
#define LIN_ADVANCE
|
// #define LIN_ADVANCE
|
||||||
#if ENABLED(LIN_ADVANCE)
|
#if ENABLED(LIN_ADVANCE)
|
||||||
//#define EXTRA_LIN_ADVANCE_K // Enable for second linear advance constants
|
//#define EXTRA_LIN_ADVANCE_K // Enable for second linear advance constants
|
||||||
#define LIN_ADVANCE_K 0.04 //0.06 // Unit: mm compression per 1mm/s extruder speed
|
#define LIN_ADVANCE_K 0.2 //0.06 // Unit: mm compression per 1mm/s extruder speed
|
||||||
//#define LA_DEBUG // If enabled, this will generate debug information output over USB.
|
//#define LA_DEBUG // If enabled, this will generate debug information output over USB.
|
||||||
#define EXPERIMENTAL_SCURVE // Enable this option to permit S-Curve Acceleration
|
#define EXPERIMENTAL_SCURVE // Enable this option to permit S-Curve Acceleration
|
||||||
#endif
|
#endif
|
||||||
@ -3763,7 +3763,7 @@
|
|||||||
*/
|
*/
|
||||||
#define HOST_ACTION_COMMANDS
|
#define HOST_ACTION_COMMANDS
|
||||||
#if ENABLED(HOST_ACTION_COMMANDS)
|
#if ENABLED(HOST_ACTION_COMMANDS)
|
||||||
//#define HOST_PROMPT_SUPPORT
|
#define HOST_PROMPT_SUPPORT
|
||||||
//#define HOST_START_MENU_ITEM // Add a menu item that tells the host to start
|
//#define HOST_START_MENU_ITEM // Add a menu item that tells the host to start
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user