Add files via upload

This commit is contained in:
rtorchia
2024-10-14 09:02:46 -04:00
committed by GitHub
parent 6d7fb46487
commit 2d955b7d9c
2 changed files with 11 additions and 9 deletions
+7 -5
View File
@@ -1,5 +1,5 @@
/**
* Marlin 3D Printer Firmware
* 5000arlin 3D Printer Firmware
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
@@ -950,8 +950,9 @@
#define MAX_JERK_EDIT_VALUES {20, 20, 0.6, 10 } // ...or, set your own edit limits
#endif
#endif
#if ENABLED(HIGH_SPEED_1)
#define DEFAULT_EJERK 10.0 // May be used by Linear Advance
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
#else
#define DEFAULT_EJERK 5.0 // May be used by Linear Advance
#endif
@@ -976,7 +977,7 @@
*
* See https://github.com/synthetos/TinyG/wiki/Jerk-Controlled-Motion-Explained
*/
#define S_CURVE_ACCELERATION
//#define S_CURVE_ACCELERATION
//===========================================================================
//============================= Z Probe Options =============================
@@ -1153,6 +1154,7 @@
#else
#define NOZZLE_TO_PROBE_OFFSET { -31.75, -14.69, 0} //prime 2023.02.10 朱工提供
#endif
// Most probes should stay away from the edges of the bed, but
// with NOZZLE_AS_PROBE this can be negative for a wider probing area.
#define PROBING_MARGIN 3
@@ -1414,7 +1416,7 @@
#define FIL_RUNOUT_STATE HIGH // Pin state indicating that filament is NOT present.
#define FIL_RUNOUT_PULLUP // Use internal pullup for filament runout pins.
//#define FIL_RUNOUT_PULLDOWN // Use internal pulldown for filament runout pins.
//#define FIL_RUNOUT_PULLDOWN // (V3SE default) Use internal pulldown for filament runout pins.
//#define WATCH_ALL_RUNOUT_SENSORS // Execute runout script on any triggering sensor, not only for the active extruder.
// This is automatically enabled for MIXING_EXTRUDERs.
@@ -1455,7 +1457,7 @@
// With multiple runout sensors use the %c placeholder for the current tool in commands (e.g., "M600 T%c")
// NOTE: After 'M412 H1' the host handles filament runout and this script does not apply.
#define FILAMENT_RUNOUT_SCRIPT "M600"
//#define FILAMENT_RUNOUT_SCRIPT "M412 H"
// After a runout is detected, continue printing this length of filament
// before executing the runout script. Useful for a sensor at the end of
// a feed tube. Requires 4 bytes SRAM per sensor, plus 4 bytes overhead.
+4 -4
View File
@@ -1924,10 +1924,10 @@
*
* See https://marlinfw.org/docs/features/lin_advance.html for full instructions.
*/
// #define LIN_ADVANCE
#define LIN_ADVANCE
#if ENABLED(LIN_ADVANCE)
//#define EXTRA_LIN_ADVANCE_K // Enable for second linear advance constants
#define LIN_ADVANCE_K 0.2 //0.06 // Unit: mm compression per 1mm/s extruder speed
#define LIN_ADVANCE_K 0.0 //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 EXPERIMENTAL_SCURVE // Enable this option to permit S-Curve Acceleration
#endif
@@ -2438,10 +2438,10 @@
#define FILAMENT_CHANGE_ALERT_BEEPS 10 // Number of alert beeps to play when a response is needed.
#define PAUSE_PARK_NO_STEPPER_TIMEOUT // Enable for XYZ steppers to stay powered on during filament change.
//#define PARK_HEAD_ON_PAUSE // Park the nozzle during pause and filament change.
#define PARK_HEAD_ON_PAUSE // Park the nozzle during pause and filament change.
//#define HOME_BEFORE_FILAMENT_CHANGE // If needed, home before parking for filament change
//#define FILAMENT_LOAD_UNLOAD_GCODES // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
#define FILAMENT_LOAD_UNLOAD_GCODES // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
//#define FILAMENT_UNLOAD_ALL_EXTRUDERS // Allow M702 to unload all extruders above a minimum target temp (as set by M302)
#endif