From 2d955b7d9c14283e535546ba7dfd97849b5e18b5 Mon Sep 17 00:00:00 2001 From: rtorchia Date: Mon, 14 Oct 2024 09:02:46 -0400 Subject: [PATCH] Add files via upload --- Marlin/Configuration.h | 12 +++++++----- Marlin/Configuration_adv.h | 8 ++++---- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index e8409cd..9bea149 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -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. diff --git a/Marlin/Configuration_adv.h b/Marlin/Configuration_adv.h index 4fefb88..c636c31 100644 --- a/Marlin/Configuration_adv.h +++ b/Marlin/Configuration_adv.h @@ -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