Facebook
From Freshpine99, 5 Months ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 127
  1. /**
  2.  * Marlin 3D Printer Firmware
  3.  * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4.  *
  5.  * Based on Sprinter and grbl.
  6.  * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
  7.  *
  8.  * This program is free software: you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation, either version 3 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  20.  *
  21.  */
  22. #pragma once
  23.  
  24. #define CONFIG_EXAMPLES_DIR "config/examples/Creality/Ender-3/CrealityV422"
  25.  
  26. /**
  27.  * Configuration_adv.h
  28.  *
  29.  * Advanced settings.
  30.  * Only change these if you know exactly what you're doing.
  31.  * Some of these settings can damage your printer if improperly set!
  32.  *
  33.  * Basic settings can be found in Configuration.h
  34.  */
  35. #define CONFIGURATION_ADV_H_VERSION 02010201
  36.  
  37. // @section develop
  38.  
  39. /**
  40.  * Configuration Export
  41.  *
  42.  * Export the configuration as part of the build. (See signature.py)
  43.  * Output files are saved with the build (e.g., .pio/build/mega2560).
  44.  *
  45.  * See `build_all_examples --ini` as an example of config.ini archiving.
  46.  *
  47.  *  1 = marlin_config.json - Dictionary containing the configuration.
  48.  *      This file is also generated for CONFIGURATION_EMBEDDING.
  49.  *  2 = config.ini - File format for PlatformIO preprocessing.
  50.  *  3 = schema.json - The entire configuration schema. (13 = pattern groups)
  51.  *  4 = schema.yml - The entire configuration schema.
  52.  */
  53. //#define CONFIG_EXPORT 2 // :[1:'JSON', 2:'config.ini', 3:'schema.json', 4:'schema.yml']
  54.  
  55. //===========================================================================
  56. //============================= Thermal Settings ============================
  57. //===========================================================================
  58. // @section temperature
  59.  
  60. /**
  61.  * Thermocouple sensors are quite sensitive to noise.  Any noise induced in
  62.  * the sensor wires, such as by stepper motor wires run in parallel to them,
  63.  * may result in the thermocouple sensor reporting spurious errors.  This
  64.  * value is the number of errors which can occur in a row before the error
  65.  * is reported.  This allows us to ignore intermittent error conditions while
  66.  * still detecting an actual failure, which should result in a continuous
  67.  * stream of errors from the sensor.
  68.  *
  69.  * Set this value to 0 to fail on the first error to occur.
  70.  */
  71. #define THERMOCOUPLE_MAX_ERRORS 15
  72.  
  73. //
  74. // Custom Thermistor 1000 parameters
  75. //
  76. #if TEMP_SENSOR_0 == 1000
  77.   #define HOTEND0_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  78.   #define HOTEND0_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  79.   #define HOTEND0_BETA                    3950 // Beta value
  80.   #define HOTEND0_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  81. #endif
  82.  
  83. #if TEMP_SENSOR_1 == 1000
  84.   #define HOTEND1_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  85.   #define HOTEND1_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  86.   #define HOTEND1_BETA                    3950 // Beta value
  87.   #define HOTEND1_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  88. #endif
  89.  
  90. #if TEMP_SENSOR_2 == 1000
  91.   #define HOTEND2_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  92.   #define HOTEND2_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  93.   #define HOTEND2_BETA                    3950 // Beta value
  94.   #define HOTEND2_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  95. #endif
  96.  
  97. #if TEMP_SENSOR_3 == 1000
  98.   #define HOTEND3_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  99.   #define HOTEND3_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  100.   #define HOTEND3_BETA                    3950 // Beta value
  101.   #define HOTEND3_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  102. #endif
  103.  
  104. #if TEMP_SENSOR_4 == 1000
  105.   #define HOTEND4_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  106.   #define HOTEND4_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  107.   #define HOTEND4_BETA                    3950 // Beta value
  108.   #define HOTEND4_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  109. #endif
  110.  
  111. #if TEMP_SENSOR_5 == 1000
  112.   #define HOTEND5_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  113.   #define HOTEND5_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  114.   #define HOTEND5_BETA                    3950 // Beta value
  115.   #define HOTEND5_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  116. #endif
  117.  
  118. #if TEMP_SENSOR_6 == 1000
  119.   #define HOTEND6_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  120.   #define HOTEND6_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  121.   #define HOTEND6_BETA                    3950 // Beta value
  122.   #define HOTEND6_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  123. #endif
  124.  
  125. #if TEMP_SENSOR_7 == 1000
  126.   #define HOTEND7_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  127.   #define HOTEND7_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  128.   #define HOTEND7_BETA                    3950 // Beta value
  129.   #define HOTEND7_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  130. #endif
  131.  
  132. #if TEMP_SENSOR_BED == 1000
  133.   #define BED_PULLUP_RESISTOR_OHMS        4700 // Pullup resistor
  134.   #define BED_RESISTANCE_25C_OHMS       100000 // Resistance at 25C
  135.   #define BED_BETA                        3950 // Beta value
  136.   #define BED_SH_C_COEFF                     0 // Steinhart-Hart C coefficient
  137. #endif
  138.  
  139. #if TEMP_SENSOR_CHAMBER == 1000
  140.   #define CHAMBER_PULLUP_RESISTOR_OHMS    4700 // Pullup resistor
  141.   #define CHAMBER_RESISTANCE_25C_OHMS   100000 // Resistance at 25C
  142.   #define CHAMBER_BETA                    3950 // Beta value
  143.   #define CHAMBER_SH_C_COEFF                 0 // Steinhart-Hart C coefficient
  144. #endif
  145.  
  146. #if TEMP_SENSOR_COOLER == 1000
  147.   #define COOLER_PULLUP_RESISTOR_OHMS     4700 // Pullup resistor
  148.   #define COOLER_RESISTANCE_25C_OHMS    100000 // Resistance at 25C
  149.   #define COOLER_BETA                     3950 // Beta value
  150.   #define COOLER_SH_C_COEFF                  0 // Steinhart-Hart C coefficient
  151. #endif
  152.  
  153. #if TEMP_SENSOR_PROBE == 1000
  154.   #define PROBE_PULLUP_RESISTOR_OHMS      4700 // Pullup resistor
  155.   #define PROBE_RESISTANCE_25C_OHMS     100000 // Resistance at 25C
  156.   #define PROBE_BETA                      3950 // Beta value
  157.   #define PROBE_SH_C_COEFF                   0 // Steinhart-Hart C coefficient
  158. #endif
  159.  
  160. #if TEMP_SENSOR_BOARD == 1000
  161.   #define BOARD_PULLUP_RESISTOR_OHMS      4700 // Pullup resistor
  162.   #define BOARD_RESISTANCE_25C_OHMS     100000 // Resistance at 25C
  163.   #define BOARD_BETA                      3950 // Beta value
  164.   #define BOARD_SH_C_COEFF                   0 // Steinhart-Hart C coefficient
  165. #endif
  166.  
  167. #if TEMP_SENSOR_REDUNDANT == 1000
  168.   #define REDUNDANT_PULLUP_RESISTOR_OHMS  4700 // Pullup resistor
  169.   #define REDUNDANT_RESISTANCE_25C_OHMS 100000 // Resistance at 25C
  170.   #define REDUNDANT_BETA                  3950 // Beta value
  171.   #define REDUNDANT_SH_C_COEFF               0 // Steinhart-Hart C coefficient
  172. #endif
  173.  
  174. /**
  175.  * Thermocouple Options — for MAX6675 (-2), MAX31855 (-3), and MAX31865 (-5).
  176.  */
  177. //#define TEMP_SENSOR_FORCE_HW_SPI                // Ignore SCK/MOSI/MISO pins; use CS and the default SPI bus.
  178. //#define MAX31865_SENSOR_WIRES_0 2               // (2-4) Number of wires for the probe connected to a MAX31865 board.
  179. //#define MAX31865_SENSOR_WIRES_1 2
  180. //#define MAX31865_SENSOR_WIRES_2 2
  181.  
  182. //#define MAX31865_50HZ_FILTER                    // Use a 50Hz filter instead of the default 60Hz.
  183. //#define MAX31865_USE_READ_ERROR_DETECTION       // Treat value spikes (20°C delta in under 1s) as read errors.
  184.  
  185. //#define MAX31865_USE_AUTO_MODE                  // Read faster and more often than 1-shot; bias voltage always on; slight effect on RTD temperature.
  186. //#define MAX31865_MIN_SAMPLING_TIME_MSEC     100 // (ms) 1-shot: minimum read interval. Reduces bias voltage effects by leaving sensor unpowered for longer intervals.
  187. //#define MAX31865_IGNORE_INITIAL_FAULTY_READS 10 // Ignore some read faults (keeping the temperature reading) to work around a possible issue (#23439).
  188.  
  189. //#define MAX31865_WIRE_OHMS_0              0.95f // For 2-wire, set the wire resistances for more accurate readings.
  190. //#define MAX31865_WIRE_OHMS_1              0.0f
  191. //#define MAX31865_WIRE_OHMS_2              0.0f
  192.  
  193. /**
  194.  * Hephestos 2 24V heated bed upgrade kit.
  195.  * https://store.bq.com/en/heated-bed-kit-hephestos2
  196.  */
  197. //#define HEPHESTOS2_HEATED_BED_KIT
  198. #if ENABLED(HEPHESTOS2_HEATED_BED_KIT)
  199.   #undef TEMP_SENSOR_BED
  200.   #define TEMP_SENSOR_BED 70
  201.   #define HEATER_BED_INVERTING true
  202. #endif
  203.  
  204. //
  205. // Heated Bed Bang-Bang options
  206. //
  207. #if DISABLED(PIDTEMPBED)
  208.   #define BED_CHECK_INTERVAL 5000   // (ms) Interval between checks in bang-bang control
  209.   #if ENABLED(BED_LIMIT_SWITCHING)
  210.     #define BED_HYSTERESIS 2        // (°C) Only set the relevant heater state when ABS(T-target) > BED_HYSTERESIS
  211.   #endif
  212. #endif
  213.  
  214. //
  215. // Heated Chamber options
  216. //
  217. #if DISABLED(PIDTEMPCHAMBER)
  218.   #define CHAMBER_CHECK_INTERVAL 5000   // (ms) Interval between checks in bang-bang control
  219.   #if ENABLED(CHAMBER_LIMIT_SWITCHING)
  220.     #define CHAMBER_HYSTERESIS 2        // (°C) Only set the relevant heater state when ABS(T-target) > CHAMBER_HYSTERESIS
  221.   #endif
  222. #endif
  223.  
  224. #if TEMP_SENSOR_CHAMBER
  225.   //#define HEATER_CHAMBER_PIN      P2_04   // Required heater on/off pin (example: SKR 1.4 Turbo HE1 plug)
  226.   //#define HEATER_CHAMBER_INVERTING false
  227.   //#define FAN1_PIN                   -1   // Remove the fan signal on pin P2_04 (example: SKR 1.4 Turbo HE1 plug)
  228.  
  229.   //#define CHAMBER_FAN               // Enable a fan on the chamber
  230.   #if ENABLED(CHAMBER_FAN)
  231.     //#define CHAMBER_FAN_INDEX   2   // Index of a fan to repurpose as the chamber fan. (Default: first unused fan)
  232.     #define CHAMBER_FAN_MODE      2   // Fan control mode: 0=Static; 1=Linear increase when temp is higher than target; 2=V-shaped curve; 3=similar to 1 but fan is always on.
  233.     #if CHAMBER_FAN_MODE == 0
  234.       #define CHAMBER_FAN_BASE  255   // Chamber fan PWM (0-255)
  235.     #elif CHAMBER_FAN_MODE == 1
  236.       #define CHAMBER_FAN_BASE  128   // Base chamber fan PWM (0-255); turns on when chamber temperature is above the target
  237.       #define CHAMBER_FAN_FACTOR 25   // PWM increase per °C above target
  238.     #elif CHAMBER_FAN_MODE == 2
  239.       #define CHAMBER_FAN_BASE  128   // Minimum chamber fan PWM (0-255)
  240.       #define CHAMBER_FAN_FACTOR 25   // PWM increase per °C difference from target
  241.     #elif CHAMBER_FAN_MODE == 3
  242.       #define CHAMBER_FAN_BASE  128   // Base chamber fan PWM (0-255)
  243.       #define CHAMBER_FAN_FACTOR 25   // PWM increase per °C above target
  244.     #endif
  245.   #endif
  246.  
  247.   //#define CHAMBER_VENT              // Enable a servo-controlled vent on the chamber
  248.   #if ENABLED(CHAMBER_VENT)
  249.     #define CHAMBER_VENT_SERVO_NR  1  // Index of the vent servo
  250.     #define HIGH_EXCESS_HEAT_LIMIT 5  // How much above target temp to consider there is excess heat in the chamber
  251.     #define LOW_EXCESS_HEAT_LIMIT  3
  252.     #define MIN_COOLING_SLOPE_TIME_CHAMBER_VENT 20
  253.     #define MIN_COOLING_SLOPE_DEG_CHAMBER_VENT 1.5
  254.   #endif
  255. #endif
  256.  
  257. //
  258. // Laser Cooler options
  259. //
  260. #if TEMP_SENSOR_COOLER
  261.   #define COOLER_MINTEMP           8  // (°C)
  262.   #define COOLER_MAXTEMP          26  // (°C)
  263.   #define COOLER_DEFAULT_TEMP     16  // (°C)
  264.   #define TEMP_COOLER_HYSTERESIS   1  // (°C) Temperature proximity considered "close enough" to the target
  265.   #define COOLER_PIN               8  // Laser cooler on/off pin used to control power to the cooling element (e.g., TEC, External chiller via relay)
  266.   #define COOLER_INVERTING     false
  267.   #define TEMP_COOLER_PIN         15  // Laser/Cooler temperature sensor pin. ADC is required.
  268.   #define COOLER_FAN                  // Enable a fan on the cooler, Fan# 0,1,2,3 etc.
  269.   #define COOLER_FAN_INDEX         0  // FAN number 0, 1, 2 etc. e.g.
  270.   #if ENABLED(COOLER_FAN)
  271.     #define COOLER_FAN_BASE      100  // Base Cooler fan PWM (0-255); turns on when Cooler temperature is above the target
  272.     #define COOLER_FAN_FACTOR     25  // PWM increase per °C above target
  273.   #endif
  274. #endif
  275.  
  276. //
  277. // Motherboard Sensor options
  278. //
  279. #if TEMP_SENSOR_BOARD
  280.   #define THERMAL_PROTECTION_BOARD   // Halt the printer if the board sensor leaves the temp range below.
  281.   #define BOARD_MINTEMP           8  // (°C)
  282.   #define BOARD_MAXTEMP          70  // (°C)
  283.   #ifndef TEMP_BOARD_PIN
  284.     //#define TEMP_BOARD_PIN -1      // Board temp sensor pin, if not set in pins file.
  285.   #endif
  286. #endif
  287.  
  288. /**
  289.  * Thermal Protection provides additional protection to your printer from damage
  290.  * and fire. Marlin always includes safe min and max temperature ranges which
  291.  * protect against a broken or disconnected thermistor wire.
  292.  *
  293.  * The issue: If a thermistor falls out, it will report the much lower
  294.  * temperature of the air in the room, and the the firmware will keep
  295.  * the heater on.
  296.  *
  297.  * The solution: Once the temperature reaches the target, start observing.
  298.  * If the temperature stays too far below the target (hysteresis) for too
  299.  * long (period), the firmware will halt the machine as a safety precaution.
  300.  *
  301.  * If you get false positives for "Thermal Runaway", increase
  302.  * THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
  303.  */
  304. #if ENABLED(THERMAL_PROTECTION_HOTENDS)
  305.   #define THERMAL_PROTECTION_PERIOD 40        // Seconds
  306.   #define THERMAL_PROTECTION_HYSTERESIS 4     // Degrees Celsius
  307.  
  308.   //#define ADAPTIVE_FAN_SLOWING              // Slow part cooling fan if temperature drops
  309.   #if BOTH(ADAPTIVE_FAN_SLOWING, PIDTEMP)
  310.     //#define NO_FAN_SLOWING_IN_PID_TUNING    // Don't slow fan speed during M303
  311.   #endif
  312.  
  313.   /**
  314.    * Whenever an M104, M109, or M303 increases the target temperature, the
  315.    * firmware will wait for the WATCH_TEMP_PERIOD to expire. If the temperature
  316.    * hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted and
  317.    * requires a hard reset. This test restarts with any M104/M109/M303, but only
  318.    * if the current temperature is far enough below the target for a reliable
  319.    * test.
  320.    *
  321.    * If you get false positives for "Heating failed", increase WATCH_TEMP_PERIOD
  322.    * and/or decrease WATCH_TEMP_INCREASE. WATCH_TEMP_INCREASE should not be set
  323.    * below 2.
  324.    */
  325.   #define WATCH_TEMP_PERIOD  40               // Seconds
  326.   #define WATCH_TEMP_INCREASE 2               // Degrees Celsius
  327. #endif
  328.  
  329. /**
  330.  * Thermal Protection parameters for the bed are just as above for hotends.
  331.  */
  332. #if ENABLED(THERMAL_PROTECTION_BED)
  333.   #define THERMAL_PROTECTION_BED_PERIOD        20 // Seconds
  334.   #define THERMAL_PROTECTION_BED_HYSTERESIS     2 // Degrees Celsius
  335.  
  336.   /**
  337.    * As described above, except for the bed (M140/M190/M303).
  338.    */
  339.   #define WATCH_BED_TEMP_PERIOD                60 // Seconds
  340.   #define WATCH_BED_TEMP_INCREASE               2 // Degrees Celsius
  341. #endif
  342.  
  343. /**
  344.  * Thermal Protection parameters for the heated chamber.
  345.  */
  346. #if ENABLED(THERMAL_PROTECTION_CHAMBER)
  347.   #define THERMAL_PROTECTION_CHAMBER_PERIOD    20 // Seconds
  348.   #define THERMAL_PROTECTION_CHAMBER_HYSTERESIS 2 // Degrees Celsius
  349.  
  350.   /**
  351.    * Heated chamber watch settings (M141/M191).
  352.    */
  353.   #define WATCH_CHAMBER_TEMP_PERIOD            60 // Seconds
  354.   #define WATCH_CHAMBER_TEMP_INCREASE           2 // Degrees Celsius
  355. #endif
  356.  
  357. /**
  358.  * Thermal Protection parameters for the laser cooler.
  359.  */
  360. #if ENABLED(THERMAL_PROTECTION_COOLER)
  361.   #define THERMAL_PROTECTION_COOLER_PERIOD     10 // Seconds
  362.   #define THERMAL_PROTECTION_COOLER_HYSTERESIS  3 // Degrees Celsius
  363.  
  364.   /**
  365.    * Laser cooling watch settings (M143/M193).
  366.    */
  367.   #define WATCH_COOLER_TEMP_PERIOD             60 // Seconds
  368.   #define WATCH_COOLER_TEMP_INCREASE            3 // Degrees Celsius
  369. #endif
  370.  
  371. #if ANY(THERMAL_PROTECTION_HOTENDS, THERMAL_PROTECTION_BED, THERMAL_PROTECTION_CHAMBER, THERMAL_PROTECTION_COOLER)
  372.   /**
  373.    * Thermal Protection Variance Monitor - EXPERIMENTAL.
  374.    * Kill the machine on a stuck temperature sensor. Disable if you get false positives.
  375.    */
  376.   //#define THERMAL_PROTECTION_VARIANCE_MONITOR   // Detect a sensor malfunction preventing temperature updates
  377. #endif
  378.  
  379. #if ENABLED(PIDTEMP)
  380.   // Add an experimental additional term to the heater power, proportional to the extrusion speed.
  381.   // A well-chosen Kc value should add just enough power to melt the increased material volume.
  382.   //#define PID_EXTRUSION_SCALING
  383.   #if ENABLED(PID_EXTRUSION_SCALING)
  384.     #define DEFAULT_Kc (100) // heating power = Kc * e_speed
  385.     #define LPQ_MAX_LEN 50
  386.   #endif
  387.  
  388.   /**
  389.    * Add an experimental additional term to the heater power, proportional to the fan speed.
  390.    * A well-chosen Kf value should add just enough power to compensate for power-loss from the cooling fan.
  391.    * You can either just add a constant compensation with the DEFAULT_Kf value
  392.    * or follow the instruction below to get speed-dependent compensation.
  393.    *
  394.    * Constant compensation (use only with fanspeeds of 0% and 100%)
  395.    * ---------------------------------------------------------------------
  396.    * A good starting point for the Kf-value comes from the calculation:
  397.    *   kf = (power_fan * eff_fan) / power_heater * 255
  398.    * where eff_fan is between 0.0 and 1.0, based on fan-efficiency and airflow to the nozzle / heater.
  399.    *
  400.    * Example:
  401.    *   Heater: 40W, Fan: 0.1A * 24V = 2.4W, eff_fan = 0.8
  402.    *   Kf = (2.4W * 0.8) / 40W * 255 = 12.24
  403.    *
  404.    * Fan-speed dependent compensation
  405.    * --------------------------------
  406.    * 1. To find a good Kf value, set the hotend temperature, wait for it to settle, and enable the fan (100%).
  407.    *    Make sure PID_FAN_SCALING_LIN_FACTOR is 0 and PID_FAN_SCALING_ALTERNATIVE_DEFINITION is not enabled.
  408.    *    If you see the temperature drop repeat the test, increasing the Kf value slowly, until the temperature
  409.    *    drop goes away. If the temperature overshoots after enabling the fan, the Kf value is too big.
  410.    * 2. Note the Kf-value for fan-speed at 100%
  411.    * 3. Determine a good value for PID_FAN_SCALING_MIN_SPEED, which is around the speed, where the fan starts moving.
  412.    * 4. Repeat step 1. and 2. for this fan speed.
  413.    * 5. Enable PID_FAN_SCALING_ALTERNATIVE_DEFINITION and enter the two identified Kf-values in
  414.    *    PID_FAN_SCALING_AT_FULL_SPEED and PID_FAN_SCALING_AT_MIN_SPEED. Enter the minimum speed in PID_FAN_SCALING_MIN_SPEED
  415.    */
  416.   //#define PID_FAN_SCALING
  417.   #if ENABLED(PID_FAN_SCALING)
  418.     //#define PID_FAN_SCALING_ALTERNATIVE_DEFINITION
  419.     #if ENABLED(PID_FAN_SCALING_ALTERNATIVE_DEFINITION)
  420.       // The alternative definition is used for an easier configuration.
  421.       // Just figure out Kf at fullspeed (255) and PID_FAN_SCALING_MIN_SPEED.
  422.       // DEFAULT_Kf and PID_FAN_SCALING_LIN_FACTOR are calculated accordingly.
  423.  
  424.       #define PID_FAN_SCALING_AT_FULL_SPEED 13.0        //=PID_FAN_SCALING_LIN_FACTOR*255+DEFAULT_Kf
  425.       #define PID_FAN_SCALING_AT_MIN_SPEED   6.0        //=PID_FAN_SCALING_LIN_FACTOR*PID_FAN_SCALING_MIN_SPEED+DEFAULT_Kf
  426.       #define PID_FAN_SCALING_MIN_SPEED     10.0        // Minimum fan speed at which to enable PID_FAN_SCALING
  427.  
  428.       #define DEFAULT_Kf (255.0*PID_FAN_SCALING_AT_MIN_SPEED-PID_FAN_SCALING_AT_FULL_SPEED*PID_FAN_SCALING_MIN_SPEED)/(255.0-PID_FAN_SCALING_MIN_SPEED)
  429.       #define PID_FAN_SCALING_LIN_FACTOR (PID_FAN_SCALING_AT_FULL_SPEED-DEFAULT_Kf)/255.0
  430.  
  431.     #else
  432.       #define PID_FAN_SCALING_LIN_FACTOR (0)             // Power loss due to cooling = Kf * (fan_speed)
  433.       #define DEFAULT_Kf 10                              // A constant value added to the PID-tuner
  434.       #define PID_FAN_SCALING_MIN_SPEED 10               // Minimum fan speed at which to enable PID_FAN_SCALING
  435.     #endif
  436.   #endif
  437. #endif
  438.  
  439. /**
  440.  * Automatic Temperature Mode
  441.  *
  442.  * Dynamically adjust the hotend target temperature based on planned E moves.
  443.  *
  444.  * (Contrast with PID_EXTRUSION_SCALING, which tracks E movement and adjusts PID
  445.  *  behavior using an additional kC value.)
  446.  *
  447.  * Autotemp is calculated by (mintemp + factor * mm_per_sec), capped to maxtemp.
  448.  *
  449.  * Enable Autotemp Mode with M104/M109 F<factor> S<mintemp> B<maxtemp>.
  450.  * Disable by sending M104/M109 with no F parameter (or F0 with AUTOTEMP_PROPORTIONAL).
  451.  */
  452. #define AUTOTEMP
  453. #if ENABLED(AUTOTEMP)
  454.   #define AUTOTEMP_OLDWEIGHT    0.98  // Factor used to weight previous readings (0.0 < value < 1.0)
  455.   // Turn on AUTOTEMP on M104/M109 by default using proportions set here
  456.   //#define AUTOTEMP_PROPORTIONAL
  457.   #if ENABLED(AUTOTEMP_PROPORTIONAL)
  458.     #define AUTOTEMP_MIN_P      0 // (°C) Added to the target temperature
  459.     #define AUTOTEMP_MAX_P      5 // (°C) Added to the target temperature
  460.     #define AUTOTEMP_FACTOR_P   1 // Apply this F parameter by default (overridden by M104/M109 F)
  461.   #endif
  462. #endif
  463.  
  464. // Show Temperature ADC value
  465. // Enable for M105 to include ADC values read from temperature sensors.
  466. //#define SHOW_TEMP_ADC_VALUES
  467.  
  468. /**
  469.  * High Temperature Thermistor Support
  470.  *
  471.  * Thermistors able to support high temperature tend to have a hard time getting
  472.  * good readings at room and lower temperatures. This means TEMP_SENSOR_X_RAW_LO_TEMP
  473.  * will probably be caught when the heating element first turns on during the
  474.  * preheating process, which will trigger a MINTEMP error as a safety measure
  475.  * and force stop everything.
  476.  * To circumvent this limitation, we allow for a preheat time (during which,
  477.  * MINTEMP error won't be triggered) and add a min_temp buffer to handle
  478.  * aberrant readings.
  479.  *
  480.  * If you want to enable this feature for your hotend thermistor(s)
  481.  * uncomment and set values > 0 in the constants below
  482.  */
  483.  
  484. // The number of consecutive low temperature errors that can occur
  485. // before a MINTEMP error is triggered. (Shouldn't be more than 10.)
  486. //#define MAX_CONSECUTIVE_LOW_TEMPERATURE_ERROR_ALLOWED 0
  487.  
  488. /**
  489.  * The number of milliseconds a hotend will preheat before starting to check
  490.  * the temperature. This value should NOT be set to the time it takes the
  491.  * hot end to reach the target temperature, but the time it takes to reach
  492.  * the minimum temperature your thermistor can read. The lower the better/safer.
  493.  * This shouldn't need to be more than 30 seconds (30000)
  494.  */
  495. //#define MILLISECONDS_PREHEAT_TIME 0
  496.  
  497. // @section extruder
  498.  
  499. /**
  500.  * Extruder runout prevention.
  501.  * If the machine is idle and the temperature over MINTEMP
  502.  * then extrude some filament every couple of SECONDS.
  503.  */
  504. //#define EXTRUDER_RUNOUT_PREVENT
  505. #if ENABLED(EXTRUDER_RUNOUT_PREVENT)
  506.   #define EXTRUDER_RUNOUT_MINTEMP 190
  507.   #define EXTRUDER_RUNOUT_SECONDS 30
  508.   #define EXTRUDER_RUNOUT_SPEED 1500  // (mm/min)
  509.   #define EXTRUDER_RUNOUT_EXTRUDE 5   // (mm)
  510. #endif
  511.  
  512. /**
  513.  * Hotend Idle Timeout
  514.  * Prevent filament in the nozzle from charring and causing a critical jam.
  515.  */
  516. //#define HOTEND_IDLE_TIMEOUT
  517. #if ENABLED(HOTEND_IDLE_TIMEOUT)
  518.   #define HOTEND_IDLE_TIMEOUT_SEC (5*60)    // (seconds) Time without extruder movement to trigger protection
  519.   #define HOTEND_IDLE_MIN_TRIGGER   180     // (°C) Minimum temperature to enable hotend protection
  520.   #define HOTEND_IDLE_NOZZLE_TARGET   0     // (°C) Safe temperature for the nozzle after timeout
  521.   #define HOTEND_IDLE_BED_TARGET      0     // (°C) Safe temperature for the bed after timeout
  522. #endif
  523.  
  524. // @section temperature
  525.  
  526. // Calibration for AD595 / AD8495 sensor to adjust temperature measurements.
  527. // The final temperature is calculated as (measuredTemp * GAIN) + OFFSET.
  528. #define TEMP_SENSOR_AD595_OFFSET  0.0
  529. #define TEMP_SENSOR_AD595_GAIN    1.0
  530. #define TEMP_SENSOR_AD8495_OFFSET 0.0
  531. #define TEMP_SENSOR_AD8495_GAIN   1.0
  532.  
  533. /**
  534.  * Controller Fan
  535.  * To cool down the stepper drivers and MOSFETs.
  536.  *
  537.  * The fan turns on automatically whenever any driver is enabled and turns
  538.  * off (or reduces to idle speed) shortly after drivers are turned off.
  539.  */
  540. //#define USE_CONTROLLER_FAN
  541. #if ENABLED(USE_CONTROLLER_FAN)
  542.   //#define CONTROLLER_FAN_PIN -1           // Set a custom pin for the controller fan
  543.   //#define CONTROLLER_FAN2_PIN -1          // Set a custom pin for second controller fan
  544.   //#define CONTROLLER_FAN_USE_Z_ONLY       // With this option only the Z axis is considered
  545.   //#define CONTROLLER_FAN_IGNORE_Z         // Ignore Z stepper. Useful when stepper timeout is disabled.
  546.   #define CONTROLLERFAN_SPEED_MIN         0 // (0-255) Minimum speed. (If set below this value the fan is turned off.)
  547.   #define CONTROLLERFAN_SPEED_ACTIVE    255 // (0-255) Active speed, used when any motor is enabled
  548.   #define CONTROLLERFAN_SPEED_IDLE        0 // (0-255) Idle speed, used when motors are disabled
  549.   #define CONTROLLERFAN_IDLE_TIME        60 // (seconds) Extra time to keep the fan running after disabling motors
  550.  
  551.   // Use TEMP_SENSOR_BOARD as a trigger for enabling the controller fan
  552.   //#define CONTROLLER_FAN_MIN_BOARD_TEMP 40  // (°C) Turn on the fan if the board reaches this temperature
  553.  
  554.   //#define CONTROLLER_FAN_EDITABLE         // Enable M710 configurable settings
  555.   #if ENABLED(CONTROLLER_FAN_EDITABLE)
  556.     #define CONTROLLER_FAN_MENU             // Enable the Controller Fan submenu
  557.   #endif
  558. #endif
  559.  
  560. /**
  561.  * Fan Kickstart
  562.  * When part cooling or controller fans first start, run at a speed that
  563.  * gets it spinning reliably for a short time before setting the requested speed.
  564.  * (Does not work on Sanguinololu with FAN_SOFT_PWM.)
  565.  */
  566. //#define FAN_KICKSTART_TIME  100  // (ms)
  567. //#define FAN_KICKSTART_POWER 180  // 64-255
  568.  
  569. // Some coolers may require a non-zero "off" state.
  570. //#define FAN_OFF_PWM  1
  571.  
  572. /**
  573.  * PWM Fan Scaling
  574.  *
  575.  * Define the min/max speeds for PWM fans (as set with M106).
  576.  *
  577.  * With these options the M106 0-255 value range is scaled to a subset
  578.  * to ensure that the fan has enough power to spin, or to run lower
  579.  * current fans with higher current. (e.g., 5V/12V fans with 12V/24V)
  580.  * Value 0 always turns off the fan.
  581.  *
  582.  * Define one or both of these to override the default 0-255 range.
  583.  */
  584. //#define FAN_MIN_PWM 50
  585. //#define FAN_MAX_PWM 128
  586.  
  587. /**
  588.  * Fan Fast PWM
  589.  *
  590.  * Combinations of PWM Modes, prescale values and TOP resolutions are used internally
  591.  * to produce a frequency as close as possible to the desired frequency.
  592.  *
  593.  * FAST_PWM_FAN_FREQUENCY
  594.  *   Set this to your desired frequency.
  595.  *   For AVR, if left undefined this defaults to F = F_CPU/(2*255*1)
  596.  *            i.e., F = 31.4kHz on 16MHz microcontrollers or F = 39.2kHz on 20MHz microcontrollers.
  597.  *   For non AVR, if left undefined this defaults to F = 1Khz.
  598.  *   This F value is only to protect the hardware from an absence of configuration
  599.  *   and not to complete it when users are not aware that the frequency must be specifically set to support the target board.
  600.  *
  601.  *   NOTE: Setting very low frequencies (< 10 Hz) may result in unexpected timer behavior.
  602.  *         Setting very high frequencies can damage your hardware.
  603.  *
  604.  * USE_OCR2A_AS_TOP [undefined by default]
  605.  *   Boards that use TIMER2 for PWM have limitations resulting in only a few possible frequencies on TIMER2:
  606.  *   16MHz MCUs: [62.5kHz, 31.4kHz (default), 7.8kHz, 3.92kHz, 1.95kHz, 977Hz, 488Hz, 244Hz, 60Hz, 122Hz, 30Hz]
  607.  *   20MHz MCUs: [78.1kHz, 39.2kHz (default), 9.77kHz, 4.9kHz, 2.44kHz, 1.22kHz, 610Hz, 305Hz, 153Hz, 76Hz, 38Hz]
  608.  *   A greater range can be achieved by enabling USE_OCR2A_AS_TOP. But note that this option blocks the use of
  609.  *   PWM on pin OC2A. Only use this option if you don't need PWM on 0C2A. (Check your schematic.)
  610.  *   USE_OCR2A_AS_TOP sacrifices duty cycle control resolution to achieve this broader range of frequencies.
  611.  */
  612. //#define FAST_PWM_FAN    // Increase the fan PWM frequency. Removes the PWM noise but increases heating in the FET/Arduino
  613. #if ENABLED(FAST_PWM_FAN)
  614.   //#define FAST_PWM_FAN_FREQUENCY 31400  // Define here to override the defaults below
  615.   //#define USE_OCR2A_AS_TOP
  616.   #ifndef FAST_PWM_FAN_FREQUENCY
  617.     #ifdef __AVR__
  618.       #define FAST_PWM_FAN_FREQUENCY ((F_CPU) / (2 * 255 * 1))
  619.     #else
  620.       #define FAST_PWM_FAN_FREQUENCY 1000U
  621.     #endif
  622.   #endif
  623. #endif
  624.  
  625. /**
  626.  * Use one of the PWM fans as a redundant part-cooling fan
  627.  */
  628. //#define REDUNDANT_PART_COOLING_FAN 2  // Index of the fan to sync with FAN 0.
  629.  
  630. // @section extruder
  631.  
  632. /**
  633.  * Extruder cooling fans
  634.  *
  635.  * Extruder auto fans automatically turn on when their extruders'
  636.  * temperatures go above EXTRUDER_AUTO_FAN_TEMPERATURE.
  637.  *
  638.  * Your board's pins file specifies the recommended pins. Override those here
  639.  * or set to -1 to disable completely.
  640.  *
  641.  * Multiple extruders can be assigned to the same pin in which case
  642.  * the fan will turn on when any selected extruder is above the threshold.
  643.  */
  644. #define E0_AUTO_FAN_PIN -1
  645. #define E1_AUTO_FAN_PIN -1
  646. #define E2_AUTO_FAN_PIN -1
  647. #define E3_AUTO_FAN_PIN -1
  648. #define E4_AUTO_FAN_PIN -1
  649. #define E5_AUTO_FAN_PIN -1
  650. #define E6_AUTO_FAN_PIN -1
  651. #define E7_AUTO_FAN_PIN -1
  652. #define CHAMBER_AUTO_FAN_PIN -1
  653. #define COOLER_AUTO_FAN_PIN -1
  654.  
  655. #define EXTRUDER_AUTO_FAN_TEMPERATURE 50
  656. #define EXTRUDER_AUTO_FAN_SPEED 255   // 255 == full speed
  657. #define CHAMBER_AUTO_FAN_TEMPERATURE 30
  658. #define CHAMBER_AUTO_FAN_SPEED 255
  659. #define COOLER_AUTO_FAN_TEMPERATURE 18
  660. #define COOLER_AUTO_FAN_SPEED 255
  661.  
  662. /**
  663.  * Hotend Cooling Fans tachometers
  664.  *
  665.  * Define one or more tachometer pins to enable fan speed
  666.  * monitoring, and reporting of fan speeds with M123.
  667.  *
  668.  * NOTE: Only works with fans up to 7000 RPM.
  669.  */
  670. //#define FOURWIRES_FANS      // Needed with AUTO_FAN when 4-wire PWM fans are installed
  671. //#define E0_FAN_TACHO_PIN -1
  672. //#define E0_FAN_TACHO_PULLUP
  673. //#define E0_FAN_TACHO_PULLDOWN
  674. //#define E1_FAN_TACHO_PIN -1
  675. //#define E1_FAN_TACHO_PULLUP
  676. //#define E1_FAN_TACHO_PULLDOWN
  677. //#define E2_FAN_TACHO_PIN -1
  678. //#define E2_FAN_TACHO_PULLUP
  679. //#define E2_FAN_TACHO_PULLDOWN
  680. //#define E3_FAN_TACHO_PIN -1
  681. //#define E3_FAN_TACHO_PULLUP
  682. //#define E3_FAN_TACHO_PULLDOWN
  683. //#define E4_FAN_TACHO_PIN -1
  684. //#define E4_FAN_TACHO_PULLUP
  685. //#define E4_FAN_TACHO_PULLDOWN
  686. //#define E5_FAN_TACHO_PIN -1
  687. //#define E5_FAN_TACHO_PULLUP
  688. //#define E5_FAN_TACHO_PULLDOWN
  689. //#define E6_FAN_TACHO_PIN -1
  690. //#define E6_FAN_TACHO_PULLUP
  691. //#define E6_FAN_TACHO_PULLDOWN
  692. //#define E7_FAN_TACHO_PIN -1
  693. //#define E7_FAN_TACHO_PULLUP
  694. //#define E7_FAN_TACHO_PULLDOWN
  695.  
  696. /**
  697.  * Part-Cooling Fan Multiplexer
  698.  *
  699.  * This feature allows you to digitally multiplex the fan output.
  700.  * The multiplexer is automatically switched at tool-change.
  701.  * Set FANMUX[012]_PINs below for up to 2, 4, or 8 multiplexed fans.
  702.  */
  703. #define FANMUX0_PIN -1
  704. #define FANMUX1_PIN -1
  705. #define FANMUX2_PIN -1
  706.  
  707. /**
  708.  * M355 Case Light on-off / brightness
  709.  */
  710. //#define CASE_LIGHT_ENABLE
  711. #if ENABLED(CASE_LIGHT_ENABLE)
  712.   //#define CASE_LIGHT_PIN 4                  // Override the default pin if needed
  713.   #define INVERT_CASE_LIGHT false             // Set true if Case Light is ON when pin is LOW
  714.   #define CASE_LIGHT_DEFAULT_ON true          // Set default power-up state on
  715.   #define CASE_LIGHT_DEFAULT_BRIGHTNESS 105   // Set default power-up brightness (0-255, requires PWM pin)
  716.   //#define CASE_LIGHT_NO_BRIGHTNESS          // Disable brightness control. Enable for non-PWM lighting.
  717.   //#define CASE_LIGHT_MAX_PWM 128            // Limit PWM duty cycle (0-255)
  718.   //#define CASE_LIGHT_MENU                   // Add Case Light options to the LCD menu
  719.   #if ENABLED(NEOPIXEL_LED)
  720.     //#define CASE_LIGHT_USE_NEOPIXEL         // Use NeoPixel LED as case light
  721.   #endif
  722.   #if EITHER(RGB_LED, RGBW_LED)
  723.     //#define CASE_LIGHT_USE_RGB_LED          // Use RGB / RGBW LED as case light
  724.   #endif
  725.   #if EITHER(CASE_LIGHT_USE_NEOPIXEL, CASE_LIGHT_USE_RGB_LED)
  726.     #define CASE_LIGHT_DEFAULT_COLOR { 255, 255, 255, 255 } // { Red, Green, Blue, White }
  727.   #endif
  728. #endif
  729.  
  730. // @section homing
  731.  
  732. // If you want endstops to stay on (by default) even when not homing
  733. // enable this option. Override at any time with M120, M121.
  734. //#define ENDSTOPS_ALWAYS_ON_DEFAULT
  735.  
  736. // @section extras
  737.  
  738. //#define Z_LATE_ENABLE // Enable Z the last moment. Needed if your Z driver overheats.
  739.  
  740. // Employ an external closed loop controller. Override pins here if needed.
  741. //#define EXTERNAL_CLOSED_LOOP_CONTROLLER
  742. #if ENABLED(EXTERNAL_CLOSED_LOOP_CONTROLLER)
  743.   //#define CLOSED_LOOP_ENABLE_PIN        -1
  744.   //#define CLOSED_LOOP_MOVE_COMPLETE_PIN -1
  745. #endif
  746.  
  747. /**
  748.  * Dual X Carriage
  749.  *
  750.  * This setup has two X carriages that can move independently, each with its own hotend.
  751.  * The carriages can be used to print an object with two colors or materials, or in
  752.  * "duplication mode" it can print two identical or X-mirrored objects simultaneously.
  753.  * The inactive carriage is parked automatically to prevent oozing.
  754.  * X1 is the left carriage, X2 the right. They park and home at opposite ends of the X axis.
  755.  * By default the X2 stepper is assigned to the first unused E plug on the board.
  756.  *
  757.  * The following Dual X Carriage modes can be selected with M605 S<mode>:
  758.  *
  759.  *   0 : (FULL_CONTROL) The slicer has full control over both X-carriages and can achieve optimal travel
  760.  *       results as long as it supports dual X-carriages. (M605 S0)
  761.  *
  762.  *   1 : (AUTO_PARK) The firmware automatically parks and unparks the X-carriages on tool-change so
  763.  *       that additional slicer support is not required. (M605 S1)
  764.  *
  765.  *   2 : (DUPLICATION) The firmware moves the second X-carriage and extruder in synchronization with
  766.  *       the first X-carriage and extruder, to print 2 copies of the same object at the same time.
  767.  *       Set the constant X-offset and temperature differential with M605 S2 X[offs] R[deg] and
  768.  *       follow with M605 S2 to initiate duplicated movement.
  769.  *
  770.  *   3 : (MIRRORED) Formbot/Vivedino-inspired mirrored mode in which the second extruder duplicates
  771.  *       the movement of the first except the second extruder is reversed in the X axis.
  772.  *       Set the initial X offset and temperature differential with M605 S2 X[offs] R[deg] and
  773.  *       follow with M605 S3 to initiate mirrored movement.
  774.  */
  775. //#define DUAL_X_CARRIAGE
  776. #if ENABLED(DUAL_X_CARRIAGE)
  777.   #define X1_MIN_POS X_MIN_POS    // Set to X_MIN_POS
  778.   #define X1_MAX_POS X_BED_SIZE   // A max coordinate so the X1 carriage can't hit the parked X2 carriage
  779.   #define X2_MIN_POS    80        // A min coordinate so the X2 carriage can't hit the parked X1 carriage
  780.   #define X2_MAX_POS   353        // The max position of the X2 carriage, typically also the home position
  781.   #define X2_HOME_DIR    1        // Set to 1. The X2 carriage always homes to the max endstop position
  782.   #define X2_HOME_POS X2_MAX_POS  // Default X2 home position. Set to X2_MAX_POS.
  783.                                   // NOTE: For Dual X Carriage use M218 T1 Xn to override the X2_HOME_POS.
  784.                                   // This allows recalibration of endstops distance without a rebuild.
  785.                                   // Remember to set the second extruder's X-offset to 0 in your slicer.
  786.  
  787.   // This is the default power-up mode which can be changed later using M605 S<mode>.
  788.   #define DEFAULT_DUAL_X_CARRIAGE_MODE DXC_AUTO_PARK_MODE
  789.  
  790.   // Default x offset in duplication mode (typically set to half print bed width)
  791.   #define DEFAULT_DUPLICATION_X_OFFSET 100
  792.  
  793.   // Default action to execute following M605 mode change commands. Typically G28X to apply new mode.
  794.   //#define EVENT_GCODE_IDEX_AFTER_MODECHANGE "G28X"
  795. #endif
  796.  
  797. /**
  798.  * Multi-Stepper / Multi-Endstop
  799.  *
  800.  * When X2_DRIVER_TYPE is defined, this indicates that the X and X2 motors work in tandem.
  801.  * The following explanations for X also apply to Y and Z multi-stepper setups.
  802.  * Endstop offsets may be changed by 'M666 X<offset> Y<offset> Z<offset>' and stored to EEPROM.
  803.  *
  804.  * - Enable INVERT_X2_VS_X_DIR if the X2 motor requires an opposite DIR signal from X.
  805.  *
  806.  * - Enable X_DUAL_ENDSTOPS if the second motor has its own endstop, with adjustable offset.
  807.  *
  808.  *   - Extra endstops are included in the output of 'M119'.
  809.  *
  810.  *   - Set X_DUAL_ENDSTOP_ADJUSTMENT to the known error in the X2 endstop.
  811.  *     Applied to the X2 motor on 'G28' / 'G28 X'.
  812.  *     Get the offset by homing X and measuring the error.
  813.  *     Also set with 'M666 X<offset>' and stored to EEPROM with 'M500'.
  814.  *
  815.  *   - Use X2_USE_ENDSTOP to set the endstop plug by name. (_XMIN_, _XMAX_, _YMIN_, _YMAX_, _ZMIN_, _ZMAX_)
  816.  */
  817. #if HAS_X2_STEPPER && DISABLED(DUAL_X_CARRIAGE)
  818.   //#define INVERT_X2_VS_X_DIR        // X2 direction signal is the opposite of X
  819.   //#define X_DUAL_ENDSTOPS           // X2 has its own endstop
  820.   #if ENABLED(X_DUAL_ENDSTOPS)
  821.     #define X2_USE_ENDSTOP    _XMAX_  // X2 endstop board plug. Don't forget to enable USE_*_PLUG.
  822.     #define X2_ENDSTOP_ADJUSTMENT  0  // X2 offset relative to X endstop
  823.   #endif
  824. #endif
  825.  
  826. #if HAS_DUAL_Y_STEPPERS
  827.   //#define INVERT_Y2_VS_Y_DIR        // Y2 direction signal is the opposite of Y
  828.   //#define Y_DUAL_ENDSTOPS           // Y2 has its own endstop
  829.   #if ENABLED(Y_DUAL_ENDSTOPS)
  830.     #define Y2_USE_ENDSTOP    _YMAX_  // Y2 endstop board plug. Don't forget to enable USE_*_PLUG.
  831.     #define Y2_ENDSTOP_ADJUSTMENT  0  // Y2 offset relative to Y endstop
  832.   #endif
  833. #endif
  834.  
  835. //
  836. // Multi-Z steppers
  837. //
  838. #ifdef Z2_DRIVER_TYPE
  839.   //#define INVERT_Z2_VS_Z_DIR        // Z2 direction signal is the opposite of Z
  840.  
  841.   //#define Z_MULTI_ENDSTOPS          // Other Z axes have their own endstops
  842.   #if ENABLED(Z_MULTI_ENDSTOPS)
  843.     #define Z2_USE_ENDSTOP   _XMAX_   // Z2 endstop board plug. Don't forget to enable USE_*_PLUG.
  844.     #define Z2_ENDSTOP_ADJUSTMENT 0   // Z2 offset relative to Z endstop
  845.   #endif
  846.   #ifdef Z3_DRIVER_TYPE
  847.     //#define INVERT_Z3_VS_Z_DIR      // Z3 direction signal is the opposite of Z
  848.     #if ENABLED(Z_MULTI_ENDSTOPS)
  849.       #define Z3_USE_ENDSTOP   _YMAX_ // Z3 endstop board plug. Don't forget to enable USE_*_PLUG.
  850.       #define Z3_ENDSTOP_ADJUSTMENT 0 // Z3 offset relative to Z endstop
  851.     #endif
  852.   #endif
  853.   #ifdef Z4_DRIVER_TYPE
  854.     //#define INVERT_Z4_VS_Z_DIR      // Z4 direction signal is the opposite of Z
  855.     #if ENABLED(Z_MULTI_ENDSTOPS)
  856.       #define Z4_USE_ENDSTOP   _ZMAX_ // Z4 endstop board plug. Don't forget to enable USE_*_PLUG.
  857.       #define Z4_ENDSTOP_ADJUSTMENT 0 // Z4 offset relative to Z endstop
  858.     #endif
  859.   #endif
  860. #endif
  861.  
  862. // Drive the E axis with two synchronized steppers
  863. //#define E_DUAL_STEPPER_DRIVERS
  864. #if ENABLED(E_DUAL_STEPPER_DRIVERS)
  865.   //#define INVERT_E1_VS_E0_DIR       // E direction signals are opposites
  866. #endif
  867.  
  868. // Activate a solenoid on the active extruder with M380. Disable all with M381.
  869. // Define SOL0_PIN, SOL1_PIN, etc., for each extruder that has a solenoid.
  870. //#define EXT_SOLENOID
  871.  
  872. // @section homing
  873.  
  874. /**
  875.  * Homing Procedure
  876.  * Homing (G28) does an indefinite move towards the endstops to establish
  877.  * the position of the toolhead relative to the workspace.
  878.  */
  879.  
  880. //#define SENSORLESS_BACKOFF_MM  { 2, 2, 0 }  // (linear=mm, rotational=°) Backoff from endstops before sensorless homing
  881.  
  882. #define HOMING_BUMP_MM      { 5, 5, 2 }       // (linear=mm, rotational=°) Backoff from endstops after first bump
  883. #define HOMING_BUMP_DIVISOR { 2, 2, 4 }       // Re-Bump Speed Divisor (Divides the Homing Feedrate)
  884.  
  885. //#define HOMING_BACKOFF_POST_MM { 2, 2, 2 }  // (linear=mm, rotational=°) Backoff from endstops after homing
  886. //#define XY_COUNTERPART_BACKOFF_MM 0         // (mm) Backoff X after homing Y, and vice-versa
  887.  
  888. #define QUICK_HOME                            // If G28 contains XY do a diagonal move first
  889. //#define HOME_Y_BEFORE_X                     // If G28 contains XY home Y before X
  890. //#define HOME_Z_FIRST                        // Home Z first. Requires a Z-MIN endstop (not a probe).
  891. //#define CODEPENDENT_XY_HOMING               // If X/Y can't home without homing Y/X first
  892.  
  893. // @section bltouch
  894.  
  895. #if ENABLED(BLTOUCH)
  896.   /**
  897.    * Either: Use the defaults (recommended) or: For special purposes, use the following DEFINES
  898.    * Do not activate settings that the probe might not understand. Clones might misunderstand
  899.    * advanced commands.
  900.    *
  901.    * Note: If the probe is not deploying, do a "Reset" and "Self-Test" and then check the
  902.    *       wiring of the BROWN, RED and ORANGE wires.
  903.    *
  904.    * Note: If the trigger signal of your probe is not being recognized, it has been very often
  905.    *       because the BLACK and WHITE wires needed to be swapped. They are not "interchangeable"
  906.    *       like they would be with a real switch. So please check the wiring first.
  907.    *
  908.    * Settings for all BLTouch and clone probes:
  909.    */
  910.  
  911.   // Safety: The probe needs time to recognize the command.
  912.   //         Minimum command delay (ms). Enable and increase if needed.
  913.   #define BLTOUCH_DELAY 500
  914.  
  915.   /**
  916.    * Settings for BLTOUCH Classic 1.2, 1.3 or BLTouch Smart 1.0, 2.0, 2.2, 3.0, 3.1, and most clones:
  917.    */
  918.  
  919.   // Feature: Switch into SW mode after a deploy. It makes the output pulse longer. Can be useful
  920.   //          in special cases, like noisy or filtered input configurations.
  921.   #define BLTOUCH_FORCE_SW_MODE
  922.  
  923.   /**
  924.    * Settings for BLTouch Smart 3.0 and 3.1
  925.    * Summary:
  926.    *   - Voltage modes: 5V and OD (open drain - "logic voltage free") output modes
  927.    *   - High-Speed mode
  928.    *   - Disable LCD voltage options
  929.    */
  930.  
  931.   /**
  932.    * Danger: Don't activate 5V mode unless attached to a 5V-tolerant controller!
  933.    * V3.0 or 3.1: Set default mode to 5V mode at Marlin startup.
  934.    * If disabled, OD mode is the hard-coded default on 3.0
  935.    * On startup, Marlin will compare its eeprom to this value. If the selected mode
  936.    * differs, a mode set eeprom write will be completed at initialization.
  937.    * Use the option below to force an eeprom write to a V3.1 probe regardless.
  938.    */
  939.   //#define BLTOUCH_SET_5V_MODE
  940.  
  941.   /**
  942.    * Safety: Activate if connecting a probe with an unknown voltage mode.
  943.    * V3.0: Set a probe into mode selected above at Marlin startup. Required for 5V mode on 3.0
  944.    * V3.1: Force a probe with unknown mode into selected mode at Marlin startup ( = Probe EEPROM write )
  945.    * To preserve the life of the probe, use this once then turn it off and re-flash.
  946.    */
  947.   //#define BLTOUCH_FORCE_MODE_SET
  948.  
  949.   /**
  950.    * Enable "HIGH SPEED" option for probing.
  951.    * Danger: Disable if your probe sometimes fails. Only suitable for stable well-adjusted systems.
  952.    * This feature was designed for Deltabots with very fast Z moves; however, higher speed Cartesians
  953.    * might be able to use it. If the machine can't raise Z fast enough the BLTouch may go into ALARM.
  954.    *
  955.    * Set the default state here, change with 'M401 S' or UI, use M500 to save, M502 to reset.
  956.    */
  957.   #define BLTOUCH_HS_MODE true
  958.  
  959.   // Safety: Enable voltage mode settings in the LCD menu.
  960.   //#define BLTOUCH_LCD_VOLTAGE_MENU
  961.  
  962. #endif // BLTOUCH
  963.  
  964. // @section extras
  965.  
  966. /**
  967.  * Z Steppers Auto-Alignment
  968.  * Add the G34 command to align multiple Z steppers using a bed probe.
  969.  */
  970. //#define Z_STEPPER_AUTO_ALIGN
  971. #if ENABLED(Z_STEPPER_AUTO_ALIGN)
  972.   /**
  973.    * Define probe X and Y positions for Z1, Z2 [, Z3 [, Z4]]
  974.    * These positions are machine-relative and do not shift with the M206 home offset!
  975.    * If not defined, probe limits will be used.
  976.    * Override with 'M422 S<index> X<pos> Y<pos>'.
  977.    */
  978.   //#define Z_STEPPER_ALIGN_XY { {  10, 190 }, { 100,  10 }, { 190, 190 } }
  979.  
  980.   /**
  981.    * Orientation for the automatically-calculated probe positions.
  982.    * Override Z stepper align points with 'M422 S<index> X<pos> Y<pos>'
  983.    *
  984.    * 2 Steppers:  (0)     (1)
  985.    *               |       |   2   |
  986.    *               | 1   2 |       |
  987.    *               |       |   1   |
  988.    *
  989.    * 3 Steppers:  (0)     (1)     (2)     (3)
  990.    *               |   3   | 1     | 2   1 |     2 |
  991.    *               |       |     3 |       | 3     |
  992.    *               | 1   2 | 2     |   3   |     1 |
  993.    *
  994.    * 4 Steppers:  (0)     (1)     (2)     (3)
  995.    *               | 4   3 | 1   4 | 2   1 | 3   2 |
  996.    *               |       |       |       |       |
  997.    *               | 1   2 | 2   3 | 3   4 | 4   1 |
  998.    */
  999.   #ifndef Z_STEPPER_ALIGN_XY
  1000.     //#define Z_STEPPERS_ORIENTATION 0
  1001.   #endif
  1002.  
  1003.   /**
  1004.    * Z Stepper positions for more rapid convergence in bed alignment.
  1005.    * Requires 3 or 4 Z steppers.
  1006.    *
  1007.    * Define Stepper XY positions for Z1, Z2, Z3... corresponding to the screw
  1008.    * positions in the bed carriage, with one position per Z stepper in stepper
  1009.    * driver order.
  1010.    */
  1011.   //#define Z_STEPPER_ALIGN_STEPPER_XY { { 210.7, 102.5 }, { 152.6, 220.0 }, { 94.5, 102.5 } }
  1012.  
  1013.   #ifndef Z_STEPPER_ALIGN_STEPPER_XY
  1014.     // Amplification factor. Used to scale the correction step up or down in case
  1015.     // the stepper (spindle) position is farther out than the test point.
  1016.     #define Z_STEPPER_ALIGN_AMP 1.0       // Use a value > 1.0 NOTE: This may cause instability!
  1017.   #endif
  1018.  
  1019.   // On a 300mm bed a 5% grade would give a misalignment of ~1.5cm
  1020.   #define G34_MAX_GRADE              5    // (%) Maximum incline that G34 will handle
  1021.   #define Z_STEPPER_ALIGN_ITERATIONS 5    // Number of iterations to apply during alignment
  1022.   #define Z_STEPPER_ALIGN_ACC        0.02 // Stop iterating early if the accuracy is better than this
  1023.   #define RESTORE_LEVELING_AFTER_G34      // Restore leveling after G34 is done?
  1024.   // After G34, re-home Z (G28 Z) or just calculate it from the last probe heights?
  1025.   // Re-homing might be more precise in reproducing the actual 'G28 Z' homing height, especially on an uneven bed.
  1026.   #define HOME_AFTER_G34
  1027. #endif
  1028.  
  1029. //
  1030. // Add the G35 command to read bed corners to help adjust screws. Requires a bed probe.
  1031. //
  1032. //#define ASSISTED_TRAMMING
  1033. #if ENABLED(ASSISTED_TRAMMING)
  1034.  
  1035.   // Define positions for probe points.
  1036.   #define TRAMMING_POINT_XY { {  20, 20 }, { 180,  20 }, { 180, 180 }, { 20, 180 } }
  1037.  
  1038.   // Define position names for probe points.
  1039.   #define TRAMMING_POINT_NAME_1 "Front-Left"
  1040.   #define TRAMMING_POINT_NAME_2 "Front-Right"
  1041.   #define TRAMMING_POINT_NAME_3 "Back-Right"
  1042.   #define TRAMMING_POINT_NAME_4 "Back-Left"
  1043.  
  1044.   #define RESTORE_LEVELING_AFTER_G35    // Enable to restore leveling setup after operation
  1045.   //#define REPORT_TRAMMING_MM          // Report Z deviation (mm) for each point relative to the first
  1046.  
  1047.   //#define ASSISTED_TRAMMING_WIZARD    // Add a Tramming Wizard to the LCD menu
  1048.  
  1049.   //#define ASSISTED_TRAMMING_WAIT_POSITION { X_CENTER, Y_CENTER, 30 } // Move the nozzle out of the way for adjustment
  1050.  
  1051.   /**
  1052.    * Screw thread:
  1053.    *   M3: 30 = Clockwise, 31 = Counter-Clockwise
  1054.    *   M4: 40 = Clockwise, 41 = Counter-Clockwise
  1055.    *   M5: 50 = Clockwise, 51 = Counter-Clockwise
  1056.    */
  1057.   #define TRAMMING_SCREW_THREAD 30
  1058.  
  1059. #endif
  1060.  
  1061. // @section motion
  1062.  
  1063. /**
  1064.  * Input Shaping -- EXPERIMENTAL
  1065.  *
  1066.  * Zero Vibration (ZV) Input Shaping for X and/or Y movements.
  1067.  *
  1068.  * This option uses a lot of SRAM for the step buffer. The buffer size is
  1069.  * calculated automatically from SHAPING_FREQ_[XY], DEFAULT_AXIS_STEPS_PER_UNIT,
  1070.  * DEFAULT_MAX_FEEDRATE and ADAPTIVE_STEP_SMOOTHING. The default calculation can
  1071.  * be overridden by setting SHAPING_MIN_FREQ and/or SHAPING_MAX_FEEDRATE.
  1072.  * The higher the frequency and the lower the feedrate, the smaller the buffer.
  1073.  * If the buffer is too small at runtime, input shaping will have reduced
  1074.  * effectiveness during high speed movements.
  1075.  *
  1076.  * Tune with M593 D<factor> F<frequency>:
  1077.  *
  1078.  *  D<factor>    Set the zeta/damping factor. If axes (X, Y, etc.) are not specified, set for all axes.
  1079.  *  F<frequency> Set the frequency. If axes (X, Y, etc.) are not specified, set for all axes.
  1080.  *  T[map]       Input Shaping type, 0:ZV, 1:EI, 2:2H EI (not implemented yet)
  1081.  *  X<1>         Set the given parameters only for the X axis.
  1082.  *  Y<1>         Set the given parameters only for the Y axis.
  1083.  */
  1084. //#define INPUT_SHAPING_X
  1085. //#define INPUT_SHAPING_Y
  1086. #if EITHER(INPUT_SHAPING_X, INPUT_SHAPING_Y)
  1087.   #if ENABLED(INPUT_SHAPING_X)
  1088.     #define SHAPING_FREQ_X  40          // (Hz) The default dominant resonant frequency on the X axis.
  1089.     #define SHAPING_ZETA_X  0.15f       // Damping ratio of the X axis (range: 0.0 = no damping to 1.0 = critical damping).
  1090.   #endif
  1091.   #if ENABLED(INPUT_SHAPING_Y)
  1092.     #define SHAPING_FREQ_Y  40          // (Hz) The default dominant resonant frequency on the Y axis.
  1093.     #define SHAPING_ZETA_Y  0.15f       // Damping ratio of the Y axis (range: 0.0 = no damping to 1.0 = critical damping).
  1094.   #endif
  1095.   //#define SHAPING_MIN_FREQ  20        // By default the minimum of the shaping frequencies. Override to affect SRAM usage.
  1096.   //#define SHAPING_MAX_STEPRATE 10000  // By default the maximum total step rate of the shaped axes. Override to affect SRAM usage.
  1097.   //#define SHAPING_MENU                // Add a menu to the LCD to set shaping parameters.
  1098. #endif
  1099.  
  1100. #define AXIS_RELATIVE_MODES { false, false, false, false }
  1101.  
  1102. // Add a Duplicate option for well-separated conjoined nozzles
  1103. //#define MULTI_NOZZLE_DUPLICATION
  1104.  
  1105. // By default pololu step drivers require an active high signal. However, some high power drivers require an active low signal as step.
  1106. #define INVERT_X_STEP_PIN false
  1107. #define INVERT_Y_STEP_PIN false
  1108. #define INVERT_Z_STEP_PIN false
  1109. #define INVERT_I_STEP_PIN false
  1110. #define INVERT_J_STEP_PIN false
  1111. #define INVERT_K_STEP_PIN false
  1112. #define INVERT_U_STEP_PIN false
  1113. #define INVERT_V_STEP_PIN false
  1114. #define INVERT_W_STEP_PIN false
  1115. #define INVERT_E_STEP_PIN false
  1116.  
  1117. /**
  1118.  * Idle Stepper Shutdown
  1119.  * Set DISABLE_INACTIVE_? 'true' to shut down axis steppers after an idle period.
  1120.  * The Deactive Time can be overridden with M18 and M84. Set to 0 for No Timeout.
  1121.  */
  1122. #define DEFAULT_STEPPER_DEACTIVE_TIME 120
  1123. #define DISABLE_INACTIVE_X true
  1124. #define DISABLE_INACTIVE_Y true
  1125. #define DISABLE_INACTIVE_Z true  // Set 'false' if the nozzle could fall onto your printed part!
  1126. #define DISABLE_INACTIVE_I true
  1127. #define DISABLE_INACTIVE_J true
  1128. #define DISABLE_INACTIVE_K true
  1129. #define DISABLE_INACTIVE_U true
  1130. #define DISABLE_INACTIVE_V true
  1131. #define DISABLE_INACTIVE_W true
  1132. #define DISABLE_INACTIVE_E true
  1133.  
  1134. // Default Minimum Feedrates for printing and travel moves
  1135. #define DEFAULT_MINIMUMFEEDRATE       0.0     // (mm/s. °/s for rotational-only moves) Minimum feedrate. Set with M205 S.
  1136. #define DEFAULT_MINTRAVELFEEDRATE     0.0     // (mm/s. °/s for rotational-only moves) Minimum travel feedrate. Set with M205 T.
  1137.  
  1138. // Minimum time that a segment needs to take as the buffer gets emptied
  1139. #define DEFAULT_MINSEGMENTTIME        20000   // (µs) Set with M205 B.
  1140.  
  1141. // Slow down the machine if the lookahead buffer is (by default) half full.
  1142. // Increase the slowdown divisor for larger buffer sizes.
  1143. #define SLOWDOWN
  1144. #if ENABLED(SLOWDOWN)
  1145.   #define SLOWDOWN_DIVISOR 2
  1146. #endif
  1147.  
  1148. /**
  1149.  * XY Frequency limit
  1150.  * Reduce resonance by limiting the frequency of small zigzag infill moves.
  1151.  * See https://hydraraptor.blogspot.com/2010/12/frequency-limit.html
  1152.  * Use M201 F<freq> G<min%> to change limits at runtime.
  1153.  */
  1154. //#define XY_FREQUENCY_LIMIT      10 // (Hz) Maximum frequency of small zigzag infill moves. Set with M201 F<hertz>.
  1155. #ifdef XY_FREQUENCY_LIMIT
  1156.   #define XY_FREQUENCY_MIN_PERCENT 5 // (percent) Minimum FR percentage to apply. Set with M201 G<min%>.
  1157. #endif
  1158.  
  1159. // Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
  1160. // of the buffer and all stops. This should not be much greater than zero and should only be changed
  1161. // if unwanted behavior is observed on a user's machine when running at very slow speeds.
  1162. #define MINIMUM_PLANNER_SPEED 0.05 // (mm/s)
  1163.  
  1164. //
  1165. // Backlash Compensation
  1166. // Adds extra movement to axes on direction-changes to account for backlash.
  1167. //
  1168. //#define BACKLASH_COMPENSATION
  1169. #if ENABLED(BACKLASH_COMPENSATION)
  1170.   // Define values for backlash distance and correction.
  1171.   // If BACKLASH_GCODE is enabled these values are the defaults.
  1172.   #define BACKLASH_DISTANCE_MM { 0, 0, 0 } // (linear=mm, rotational=°) One value for each linear axis
  1173.   #define BACKLASH_CORRECTION    0.0       // 0.0 = no correction; 1.0 = full correction
  1174.  
  1175.   // Add steps for motor direction changes on CORE kinematics
  1176.   //#define CORE_BACKLASH
  1177.  
  1178.   // Set BACKLASH_SMOOTHING_MM to spread backlash correction over multiple segments
  1179.   // to reduce print artifacts. (Enabling this is costly in memory and computation!)
  1180.   //#define BACKLASH_SMOOTHING_MM 3 // (mm)
  1181.  
  1182.   // Add runtime configuration and tuning of backlash values (M425)
  1183.   //#define BACKLASH_GCODE
  1184.  
  1185.   #if ENABLED(BACKLASH_GCODE)
  1186.     // Measure the Z backlash when probing (G29) and set with "M425 Z"
  1187.     #define MEASURE_BACKLASH_WHEN_PROBING
  1188.  
  1189.     #if ENABLED(MEASURE_BACKLASH_WHEN_PROBING)
  1190.       // When measuring, the probe will move up to BACKLASH_MEASUREMENT_LIMIT
  1191.       // mm away from point of contact in BACKLASH_MEASUREMENT_RESOLUTION
  1192.       // increments while checking for the contact to be broken.
  1193.       #define BACKLASH_MEASUREMENT_LIMIT       0.5   // (mm)
  1194.       #define BACKLASH_MEASUREMENT_RESOLUTION  0.005 // (mm)
  1195.       #define BACKLASH_MEASUREMENT_FEEDRATE    Z_PROBE_FEEDRATE_SLOW // (mm/min)
  1196.     #endif
  1197.   #endif
  1198. #endif
  1199.  
  1200. /**
  1201.  * Automatic backlash, position, and hotend offset calibration
  1202.  *
  1203.  * Enable G425 to run automatic calibration using an electrically-
  1204.  * conductive cube, bolt, or washer mounted on the bed.
  1205.  *
  1206.  * G425 uses the probe to touch the top and sides of the calibration object
  1207.  * on the bed and measures and/or correct positional offsets, axis backlash
  1208.  * and hotend offsets.
  1209.  *
  1210.  * Note: HOTEND_OFFSET and CALIBRATION_OBJECT_CENTER must be set to within
  1211.  *       ±5mm of true values for G425 to succeed.
  1212.  */
  1213. //#define CALIBRATION_GCODE
  1214. #if ENABLED(CALIBRATION_GCODE)
  1215.  
  1216.   //#define CALIBRATION_SCRIPT_PRE  "M117 Starting Auto-Calibration\nT0\nG28\nG12\nM117 Calibrating..."
  1217.   //#define CALIBRATION_SCRIPT_POST "M500\nM117 Calibration data saved"
  1218.  
  1219.   #define CALIBRATION_MEASUREMENT_RESOLUTION     0.01 // mm
  1220.  
  1221.   #define CALIBRATION_FEEDRATE_SLOW             60    // mm/min
  1222.   #define CALIBRATION_FEEDRATE_FAST           1200    // mm/min
  1223.   #define CALIBRATION_FEEDRATE_TRAVEL         3000    // mm/min
  1224.  
  1225.   // The following parameters refer to the conical section of the nozzle tip.
  1226.   #define CALIBRATION_NOZZLE_TIP_HEIGHT          1.0  // mm
  1227.   #define CALIBRATION_NOZZLE_OUTER_DIAMETER      2.0  // mm
  1228.  
  1229.   // Uncomment to enable reporting (required for "G425 V", but consumes PROGMEM).
  1230.   //#define CALIBRATION_REPORTING
  1231.  
  1232.   // The true location and dimension the cube/bolt/washer on the bed.
  1233.   #define CALIBRATION_OBJECT_CENTER     { 264.0, -22.0,  -2.0 } // mm
  1234.   #define CALIBRATION_OBJECT_DIMENSIONS {  10.0,  10.0,  10.0 } // mm
  1235.  
  1236.   // Comment out any sides which are unreachable by the probe. For best
  1237.   // auto-calibration results, all sides must be reachable.
  1238.   #define CALIBRATION_MEASURE_RIGHT
  1239.   #define CALIBRATION_MEASURE_FRONT
  1240.   #define CALIBRATION_MEASURE_LEFT
  1241.   #define CALIBRATION_MEASURE_BACK
  1242.  
  1243.   //#define CALIBRATION_MEASURE_IMIN
  1244.   //#define CALIBRATION_MEASURE_IMAX
  1245.   //#define CALIBRATION_MEASURE_JMIN
  1246.   //#define CALIBRATION_MEASURE_JMAX
  1247.   //#define CALIBRATION_MEASURE_KMIN
  1248.   //#define CALIBRATION_MEASURE_KMAX
  1249.   //#define CALIBRATION_MEASURE_UMIN
  1250.   //#define CALIBRATION_MEASURE_UMAX
  1251.   //#define CALIBRATION_MEASURE_VMIN
  1252.   //#define CALIBRATION_MEASURE_VMAX
  1253.   //#define CALIBRATION_MEASURE_WMIN
  1254.   //#define CALIBRATION_MEASURE_WMAX
  1255.  
  1256.   // Probing at the exact top center only works if the center is flat. If
  1257.   // probing on a screwhead or hollow washer, probe near the edges.
  1258.   //#define CALIBRATION_MEASURE_AT_TOP_EDGES
  1259.  
  1260.   // Define the pin to read during calibration
  1261.   #ifndef CALIBRATION_PIN
  1262.     //#define CALIBRATION_PIN -1            // Define here to override the default pin
  1263.     #define CALIBRATION_PIN_INVERTING false // Set to true to invert the custom pin
  1264.     //#define CALIBRATION_PIN_PULLDOWN
  1265.     #define CALIBRATION_PIN_PULLUP
  1266.   #endif
  1267. #endif
  1268.  
  1269. /**
  1270.  * Adaptive Step Smoothing increases the resolution of multi-axis moves, particularly at step frequencies
  1271.  * below 1kHz (for AVR) or 10kHz (for ARM), where aliasing between axes in multi-axis moves causes audible
  1272.  * vibration and surface artifacts. The algorithm adapts to provide the best possible step smoothing at the
  1273.  * lowest stepping frequencies.
  1274.  */
  1275. //#define ADAPTIVE_STEP_SMOOTHING
  1276.  
  1277. /**
  1278.  * Custom Microstepping
  1279.  * Override as-needed for your setup. Up to 3 MS pins are supported.
  1280.  */
  1281. //#define MICROSTEP1 LOW,LOW,LOW
  1282. //#define MICROSTEP2 HIGH,LOW,LOW
  1283. //#define MICROSTEP4 LOW,HIGH,LOW
  1284. //#define MICROSTEP8 HIGH,HIGH,LOW
  1285. //#define MICROSTEP16 LOW,LOW,HIGH
  1286. //#define MICROSTEP32 HIGH,LOW,HIGH
  1287.  
  1288. // Microstep settings (Requires a board with pins named X_MS1, X_MS2, etc.)
  1289. #define MICROSTEP_MODES { 16, 16, 16, 16, 16, 16 } // [1,2,4,8,16]
  1290.  
  1291. /**
  1292.  *  @section  stepper motor current
  1293.  *
  1294.  *  Some boards have a means of setting the stepper motor current via firmware.
  1295.  *
  1296.  *  The power on motor currents are set by:
  1297.  *    PWM_MOTOR_CURRENT - used by MINIRAMBO & ULTIMAIN_2
  1298.  *                         known compatible chips: A4982
  1299.  *    DIGIPOT_MOTOR_CURRENT - used by BQ_ZUM_MEGA_3D, RAMBO & SCOOVO_X9H
  1300.  *                         known compatible chips: AD5206
  1301.  *    DAC_MOTOR_CURRENT_DEFAULT - used by PRINTRBOARD_REVF & RIGIDBOARD_V2
  1302.  *                         known compatible chips: MCP4728
  1303.  *    DIGIPOT_I2C_MOTOR_CURRENTS - used by 5DPRINT, AZTEEG_X3_PRO, AZTEEG_X5_MINI_WIFI, MIGHTYBOARD_REVE
  1304.  *                         known compatible chips: MCP4451, MCP4018
  1305.  *
  1306.  *  Motor currents can also be set by M907 - M910 and by the LCD.
  1307.  *    M907 - applies to all.
  1308.  *    M908 - BQ_ZUM_MEGA_3D, RAMBO, PRINTRBOARD_REVF, RIGIDBOARD_V2 & SCOOVO_X9H
  1309.  *    M909, M910 & LCD - only PRINTRBOARD_REVF & RIGIDBOARD_V2
  1310.  */
  1311. //#define PWM_MOTOR_CURRENT { 1300, 1300, 1250 }          // Values in milliamps
  1312. //#define DIGIPOT_MOTOR_CURRENT { 135,135,135,135,135 }   // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A)
  1313. //#define DAC_MOTOR_CURRENT_DEFAULT { 70, 80, 90, 80 }    // Default drive percent - X, Y, Z, E axis
  1314.  
  1315. /**
  1316.  * I2C-based DIGIPOTs (e.g., Azteeg X3 Pro)
  1317.  */
  1318. //#define DIGIPOT_MCP4018             // Requires https://github.com/felias-fogg/SlowSoftI2CMaster
  1319. //#define DIGIPOT_MCP4451
  1320. #if EITHER(DIGIPOT_MCP4018, DIGIPOT_MCP4451)
  1321.   #define DIGIPOT_I2C_NUM_CHANNELS 8  // 5DPRINT:4   AZTEEG_X3_PRO:8   MKS_SBASE:5   MIGHTYBOARD_REVE:5
  1322.  
  1323.   // Actual motor currents in Amps. The number of entries must match DIGIPOT_I2C_NUM_CHANNELS.
  1324.   // These correspond to the physical drivers, so be mindful if the order is changed.
  1325.   #define DIGIPOT_I2C_MOTOR_CURRENTS { 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 } // AZTEEG_X3_PRO
  1326.  
  1327.   //#define DIGIPOT_USE_RAW_VALUES    // Use DIGIPOT_MOTOR_CURRENT raw wiper values (instead of A4988 motor currents)
  1328.  
  1329.   /**
  1330.    * Common slave addresses:
  1331.    *
  1332.    *                        A   (A shifted)   B   (B shifted)  IC
  1333.    * Smoothie              0x2C (0x58)       0x2D (0x5A)       MCP4451
  1334.    * AZTEEG_X3_PRO         0x2C (0x58)       0x2E (0x5C)       MCP4451
  1335.    * AZTEEG_X5_MINI        0x2C (0x58)       0x2E (0x5C)       MCP4451
  1336.    * AZTEEG_X5_MINI_WIFI         0x58              0x5C        MCP4451
  1337.    * MIGHTYBOARD_REVE      0x2F (0x5E)                         MCP4018
  1338.    */
  1339.   //#define DIGIPOT_I2C_ADDRESS_A 0x2C  // Unshifted slave address for first DIGIPOT
  1340.   //#define DIGIPOT_I2C_ADDRESS_B 0x2D  // Unshifted slave address for second DIGIPOT
  1341. #endif
  1342.  
  1343. //===========================================================================
  1344. //=============================Additional Features===========================
  1345. //===========================================================================
  1346.  
  1347. // @section lcd
  1348.  
  1349. #if HAS_MANUAL_MOVE_MENU
  1350.   #define MANUAL_FEEDRATE { 50*60, 50*60, 4*60, 2*60 } // (mm/min) Feedrates for manual moves along X, Y, Z, E from panel
  1351.   #define FINE_MANUAL_MOVE 0.025    // (mm) Smallest manual move (< 0.1mm) applying to Z on most machines
  1352.   #if IS_ULTIPANEL
  1353.     #define MANUAL_E_MOVES_RELATIVE // Display extruder move distance rather than "position"
  1354.     #define ULTIPANEL_FEEDMULTIPLY  // Encoder sets the feedrate multiplier on the Status Screen
  1355.   #endif
  1356. #endif
  1357.  
  1358. // Change values more rapidly when the encoder is rotated faster
  1359. #define ENCODER_RATE_MULTIPLIER
  1360. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  1361.   #define ENCODER_10X_STEPS_PER_SEC   30  // (steps/s) Encoder rate for 10x speed
  1362.   #define ENCODER_100X_STEPS_PER_SEC  80  // (steps/s) Encoder rate for 100x speed
  1363. #endif
  1364.  
  1365. // Play a beep when the feedrate is changed from the Status Screen
  1366. //#define BEEP_ON_FEEDRATE_CHANGE
  1367. #if ENABLED(BEEP_ON_FEEDRATE_CHANGE)
  1368.   #define FEEDRATE_CHANGE_BEEP_DURATION   10
  1369.   #define FEEDRATE_CHANGE_BEEP_FREQUENCY 440
  1370. #endif
  1371.  
  1372. //
  1373. // LCD Backlight Timeout
  1374. //
  1375. //#define LCD_BACKLIGHT_TIMEOUT_MINS 1  // (minutes) Timeout before turning off the backlight
  1376.  
  1377. #if HAS_BED_PROBE && EITHER(HAS_MARLINUI_MENU, HAS_TFT_LVGL_UI)
  1378.   #define PROBE_OFFSET_WIZARD       // Add a Probe Z Offset calibration option to the LCD menu
  1379.   #if ENABLED(PROBE_OFFSET_WIZARD)
  1380.     /**
  1381.      * Enable to init the Probe Z-Offset when starting the Wizard.
  1382.      * Use a height slightly above the estimated nozzle-to-probe Z offset.
  1383.      * For example, with an offset of -5, consider a starting height of -4.
  1384.      */
  1385.     #define PROBE_OFFSET_WIZARD_START_Z -4.0
  1386.  
  1387.     // Set a convenient position to do the calibration (probing point and nozzle/bed-distance)
  1388.     //#define PROBE_OFFSET_WIZARD_XY_POS { X_CENTER, Y_CENTER }
  1389.   #endif
  1390. #endif
  1391.  
  1392. #if HAS_MARLINUI_MENU
  1393.  
  1394.   #if HAS_BED_PROBE
  1395.     // Add calibration in the Probe Offsets menu to compensate for X-axis twist.
  1396.     //#define X_AXIS_TWIST_COMPENSATION
  1397.     #if ENABLED(X_AXIS_TWIST_COMPENSATION)
  1398.       /**
  1399.        * Enable to init the Probe Z-Offset when starting the Wizard.
  1400.        * Use a height slightly above the estimated nozzle-to-probe Z offset.
  1401.        * For example, with an offset of -5, consider a starting height of -4.
  1402.        */
  1403.       #define XATC_START_Z 0.0
  1404.       #define XATC_MAX_POINTS 3             // Number of points to probe in the wizard
  1405.       #define XATC_Y_POSITION Y_CENTER      // (mm) Y position to probe
  1406.       #define XATC_Z_OFFSETS { 0, 0, 0 }    // Z offsets for X axis sample points
  1407.     #endif
  1408.  
  1409.     // Show Deploy / Stow Probe options in the Motion menu.
  1410.     #define PROBE_DEPLOY_STOW_MENU
  1411.   #endif
  1412.  
  1413.   // Include a page of printer information in the LCD Main Menu
  1414.   #define LCD_INFO_MENU
  1415.   #if ENABLED(LCD_INFO_MENU)
  1416.     //#define LCD_PRINTER_INFO_IS_BOOTSCREEN // Show bootscreen(s) instead of Printer Info pages
  1417.   #endif
  1418.  
  1419.   // BACK menu items keep the highlight at the top
  1420.   //#define TURBO_BACK_MENU_ITEM
  1421.  
  1422.   // Insert a menu for preheating at the top level to allow for quick access
  1423.   //#define PREHEAT_SHORTCUT_MENU_ITEM
  1424.  
  1425. #endif // HAS_MARLINUI_MENU
  1426.  
  1427. #if ANY(HAS_DISPLAY, DWIN_LCD_PROUI, DWIN_CREALITY_LCD_JYERSUI)
  1428.   //#define SOUND_MENU_ITEM   // Add a mute option to the LCD menu
  1429.   #define SOUND_ON_DEFAULT    // Buzzer/speaker default enabled state
  1430. #endif
  1431.  
  1432. #if EITHER(HAS_DISPLAY, DWIN_LCD_PROUI)
  1433.   // The timeout to return to the status screen from sub-menus
  1434.   //#define LCD_TIMEOUT_TO_STATUS 15000   // (ms)
  1435.  
  1436.   #if ENABLED(SHOW_BOOTSCREEN)
  1437.     #define BOOTSCREEN_TIMEOUT 4000       // (ms) Total Duration to display the boot screen(s)
  1438.     #if EITHER(HAS_MARLINUI_U8GLIB, TFT_COLOR_UI)
  1439.       #define BOOT_MARLIN_LOGO_SMALL      // Show a smaller Marlin logo on the Boot Screen (saving lots of flash)
  1440.     #endif
  1441.   #endif
  1442.  
  1443.   // Scroll a longer status message into view
  1444.   #define STATUS_MESSAGE_SCROLLING
  1445.  
  1446.   // Apply a timeout to low-priority status messages
  1447.   //#define STATUS_MESSAGE_TIMEOUT_SEC 30 // (seconds)
  1448.  
  1449.   // On the Info Screen, display XY with one decimal place when possible
  1450.   //#define LCD_DECIMAL_SMALL_XY
  1451.  
  1452.   // Show the E position (filament used) during printing
  1453.   //#define LCD_SHOW_E_TOTAL
  1454.  
  1455.   /**
  1456.    * LED Control Menu
  1457.    * Add LED Control to the LCD menu
  1458.    */
  1459.   //#define LED_CONTROL_MENU
  1460.   #if ENABLED(LED_CONTROL_MENU)
  1461.     #define LED_COLOR_PRESETS                 // Enable the Preset Color menu option
  1462.     //#define NEO2_COLOR_PRESETS              // Enable a second NeoPixel Preset Color menu option
  1463.     #if ENABLED(LED_COLOR_PRESETS)
  1464.       #define LED_USER_PRESET_RED        255  // User defined RED value
  1465.       #define LED_USER_PRESET_GREEN      128  // User defined GREEN value
  1466.       #define LED_USER_PRESET_BLUE         0  // User defined BLUE value
  1467.       #define LED_USER_PRESET_WHITE      255  // User defined WHITE value
  1468.       #define LED_USER_PRESET_BRIGHTNESS 255  // User defined intensity
  1469.       //#define LED_USER_PRESET_STARTUP       // Have the printer display the user preset color on startup
  1470.     #endif
  1471.     #if ENABLED(NEO2_COLOR_PRESETS)
  1472.       #define NEO2_USER_PRESET_RED        255 // User defined RED value
  1473.       #define NEO2_USER_PRESET_GREEN      128 // User defined GREEN value
  1474.       #define NEO2_USER_PRESET_BLUE         0 // User defined BLUE value
  1475.       #define NEO2_USER_PRESET_WHITE      255 // User defined WHITE value
  1476.       #define NEO2_USER_PRESET_BRIGHTNESS 255 // User defined intensity
  1477.       //#define NEO2_USER_PRESET_STARTUP      // Have the printer display the user preset color on startup for the second strip
  1478.     #endif
  1479.   #endif
  1480.  
  1481. #endif // HAS_DISPLAY || DWIN_LCD_PROUI
  1482.  
  1483. // Add 'M73' to set print job progress, overrides Marlin's built-in estimate
  1484. //#define SET_PROGRESS_MANUALLY
  1485. #if ENABLED(SET_PROGRESS_MANUALLY)
  1486.   #define SET_PROGRESS_PERCENT            // Add 'P' parameter to set percentage done
  1487.   #define SET_REMAINING_TIME              // Add 'R' parameter to set remaining time
  1488.   //#define SET_INTERACTION_TIME          // Add 'C' parameter to set time until next filament change or other user interaction
  1489.   //#define M73_REPORT                    // Report M73 values to host
  1490.   #if BOTH(M73_REPORT, SDSUPPORT)
  1491.     #define M73_REPORT_SD_ONLY            // Report only when printing from SD
  1492.   #endif
  1493. #endif
  1494.  
  1495. // LCD Print Progress options. Multiple times may be displayed in turn.
  1496. #if HAS_DISPLAY && EITHER(SDSUPPORT, SET_PROGRESS_MANUALLY)
  1497.   #define SHOW_PROGRESS_PERCENT           // Show print progress percentage (doesn't affect progress bar)
  1498.   #define SHOW_ELAPSED_TIME               // Display elapsed printing time (prefix 'E')
  1499.   //#define SHOW_REMAINING_TIME           // Display estimated time to completion (prefix 'R')
  1500.   #if ENABLED(SET_INTERACTION_TIME)
  1501.     #define SHOW_INTERACTION_TIME         // Display time until next user interaction ('C' = filament change)
  1502.   #endif
  1503.   //#define PRINT_PROGRESS_SHOW_DECIMALS  // Show/report progress with decimal digits, not all UIs support this
  1504.  
  1505.   #if EITHER(HAS_MARLINUI_HD44780, IS_TFTGLCD_PANEL)
  1506.     //#define LCD_PROGRESS_BAR            // Show a progress bar on HD44780 LCDs for SD printing
  1507.     #if ENABLED(LCD_PROGRESS_BAR)
  1508.       #define PROGRESS_BAR_BAR_TIME 2000  // (ms) Amount of time to show the bar
  1509.       #define PROGRESS_BAR_MSG_TIME 3000  // (ms) Amount of time to show the status message
  1510.       #define PROGRESS_MSG_EXPIRE      0  // (ms) Amount of time to retain the status message (0=forever)
  1511.       //#define PROGRESS_MSG_ONCE         // Show the message for MSG_TIME then clear it
  1512.       //#define LCD_PROGRESS_BAR_TEST     // Add a menu item to test the progress bar
  1513.     #endif
  1514.   #endif
  1515. #endif
  1516.  
  1517. #if ENABLED(SDSUPPORT)
  1518.   /**
  1519.    * SD Card SPI Speed
  1520.    * May be required to resolve "volume init" errors.
  1521.    *
  1522.    * Enable and set to SPI_HALF_SPEED, SPI_QUARTER_SPEED, or SPI_EIGHTH_SPEED
  1523.    *  otherwise full speed will be applied.
  1524.    *
  1525.    * :['SPI_HALF_SPEED', 'SPI_QUARTER_SPEED', 'SPI_EIGHTH_SPEED']
  1526.    */
  1527.   //#define SD_SPI_SPEED SPI_HALF_SPEED
  1528.  
  1529.   // The standard SD detect circuit reads LOW when media is inserted and HIGH when empty.
  1530.   // Enable this option and set to HIGH if your SD cards are incorrectly detected.
  1531.   //#define SD_DETECT_STATE HIGH
  1532.  
  1533.   //#define SD_IGNORE_AT_STARTUP            // Don't mount the SD card when starting up
  1534.   #define SDCARD_READONLY                   // Read-only SD card (to save over 2K of flash)
  1535.  
  1536.   //#define GCODE_REPEAT_MARKERS            // Enable G-code M808 to set repeat markers and do looping
  1537.  
  1538.   #define SD_PROCEDURE_DEPTH 1              // Increase if you need more nested M32 calls
  1539.  
  1540.   #define SD_FINISHED_STEPPERRELEASE true   // Disable steppers when SD Print is finished
  1541.   #define SD_FINISHED_RELEASECOMMAND "M84"  // Use "M84XYE" to keep Z enabled so your bed stays in place
  1542.  
  1543.   // Reverse SD sort to show "more recent" files first, according to the card's FAT.
  1544.   // Since the FAT gets out of order with usage, SDCARD_SORT_ALPHA is recommended.
  1545.   #define SDCARD_RATHERRECENTFIRST
  1546.  
  1547.   #define SD_MENU_CONFIRM_START             // Confirm the selected SD file before printing
  1548.  
  1549.   //#define NO_SD_AUTOSTART                 // Remove auto#.g file support completely to save some Flash, SRAM
  1550.   //#define MENU_ADDAUTOSTART               // Add a menu option to run auto#.g files
  1551.  
  1552.   //#define BROWSE_MEDIA_ON_INSERT          // Open the file browser when media is inserted
  1553.  
  1554.   //#define MEDIA_MENU_AT_TOP               // Force the media menu to be listed on the top of the main menu
  1555.  
  1556.   #define EVENT_GCODE_SD_ABORT "G28XY"      // G-code to run on SD Abort Print (e.g., "G28XY" or "G27")
  1557.  
  1558.   #if ENABLED(PRINTER_EVENT_LEDS)
  1559.     #define PE_LEDS_COMPLETED_TIME  (30*60) // (seconds) Time to keep the LED "done" color before restoring normal illumination
  1560.   #endif
  1561.  
  1562.   /**
  1563.    * Continue after Power-Loss (Creality3D)
  1564.    *
  1565.    * Store the current state to the SD Card at the start of each layer
  1566.    * during SD printing. If the recovery file is found at boot time, present
  1567.    * an option on the LCD screen to continue the print from the last-known
  1568.    * point in the file.
  1569.    */
  1570.   //#define POWER_LOSS_RECOVERY
  1571.   #if ENABLED(POWER_LOSS_RECOVERY)
  1572.     #define PLR_ENABLED_DEFAULT   false // Power Loss Recovery enabled by default. (Set with 'M413 Sn' & M500)
  1573.     //#define BACKUP_POWER_SUPPLY       // Backup power / UPS to move the steppers on power loss
  1574.     //#define POWER_LOSS_ZRAISE       2 // (mm) Z axis raise on resume (on power loss with UPS)
  1575.     //#define POWER_LOSS_PIN         44 // Pin to detect power loss. Set to -1 to disable default pin on boards without module.
  1576.     //#define POWER_LOSS_STATE     HIGH // State of pin indicating power loss
  1577.     //#define POWER_LOSS_PULLUP         // Set pullup / pulldown as appropriate for your sensor
  1578.     //#define POWER_LOSS_PULLDOWN
  1579.     //#define POWER_LOSS_PURGE_LEN   20 // (mm) Length of filament to purge on resume
  1580.     //#define POWER_LOSS_RETRACT_LEN 10 // (mm) Length of filament to retract on fail. Requires backup power.
  1581.  
  1582.     // Without a POWER_LOSS_PIN the following option helps reduce wear on the SD card,
  1583.     // especially with "vase mode" printing. Set too high and vases cannot be continued.
  1584.     #define POWER_LOSS_MIN_Z_CHANGE 0.05 // (mm) Minimum Z change before saving power-loss data
  1585.  
  1586.     // Enable if Z homing is needed for proper recovery. 99.9% of the time this should be disabled!
  1587.     //#define POWER_LOSS_RECOVER_ZHOME
  1588.     #if ENABLED(POWER_LOSS_RECOVER_ZHOME)
  1589.       //#define POWER_LOSS_ZHOME_POS { 0, 0 } // Safe XY position to home Z while avoiding objects on the bed
  1590.     #endif
  1591.   #endif
  1592.  
  1593.   /**
  1594.    * Sort SD file listings in alphabetical order.
  1595.    *
  1596.    * With this option enabled, items on SD cards will be sorted
  1597.    * by name for easier navigation.
  1598.    *
  1599.    * By default...
  1600.    *
  1601.    *  - Use the slowest -but safest- method for sorting.
  1602.    *  - Folders are sorted to the top.
  1603.    *  - The sort key is statically allocated.
  1604.    *  - No added G-code (M34) support.
  1605.    *  - 40 item sorting limit. (Items after the first 40 are unsorted.)
  1606.    *
  1607.    * SD sorting uses static allocation (as set by SDSORT_LIMIT), allowing the
  1608.    * compiler to calculate the worst-case usage and throw an error if the SRAM
  1609.    * limit is exceeded.
  1610.    *
  1611.    *  - SDSORT_USES_RAM provides faster sorting via a static directory buffer.
  1612.    *  - SDSORT_USES_STACK does the same, but uses a local stack-based buffer.
  1613.    *  - SDSORT_CACHE_NAMES will retain the sorted file listing in RAM. (Expensive!)
  1614.    *  - SDSORT_DYNAMIC_RAM only uses RAM when the SD menu is visible. (Use with caution!)
  1615.    */
  1616.   //#define SDCARD_SORT_ALPHA
  1617.  
  1618.   // SD Card Sorting options
  1619.   #if ENABLED(SDCARD_SORT_ALPHA)
  1620.     #define SDSORT_LIMIT       40     // Maximum number of sorted items (10-256). Costs 27 bytes each.
  1621.     #define FOLDER_SORTING     -1     // -1=above  0=none  1=below
  1622.     #define SDSORT_GCODE       false  // Allow turning sorting on/off with LCD and M34 G-code.
  1623.     #define SDSORT_USES_RAM    false  // Pre-allocate a static array for faster pre-sorting.
  1624.     #define SDSORT_USES_STACK  false  // Prefer the stack for pre-sorting to give back some SRAM. (Negated by next 2 options.)
  1625.     #define SDSORT_CACHE_NAMES false  // Keep sorted items in RAM longer for speedy performance. Most expensive option.
  1626.     #define SDSORT_DYNAMIC_RAM false  // Use dynamic allocation (within SD menus). Least expensive option. Set SDSORT_LIMIT before use!
  1627.     #define SDSORT_CACHE_VFATS 2      // Maximum number of 13-byte VFAT entries to use for sorting.
  1628.                                       // Note: Only affects SCROLL_LONG_FILENAMES with SDSORT_CACHE_NAMES but not SDSORT_DYNAMIC_RAM.
  1629.   #endif
  1630.  
  1631.   // Allow international symbols in long filenames. To display correctly, the
  1632.   // LCD's font must contain the characters. Check your selected LCD language.
  1633.   //#define UTF_FILENAME_SUPPORT
  1634.  
  1635.   //#define LONG_FILENAME_HOST_SUPPORT    // Get the long filename of a file/folder with 'M33 <dosname>' and list long filenames with 'M20 L'
  1636.   //#define LONG_FILENAME_WRITE_SUPPORT   // Create / delete files with long filenames via M28, M30, and Binary Transfer Protocol
  1637.   //#define M20_TIMESTAMP_SUPPORT         // Include timestamps by adding the 'T' flag to M20 commands
  1638.  
  1639.   #define SCROLL_LONG_FILENAMES           // Scroll long filenames in the SD card menu
  1640.  
  1641.   //#define SD_ABORT_NO_COOLDOWN          // Leave the heaters on after Stop Print (not recommended!)
  1642.  
  1643.   /**
  1644.    * Abort SD printing when any endstop is triggered.
  1645.    * This feature is enabled with 'M540 S1' or from the LCD menu.
  1646.    * Endstops must be activated for this option to work.
  1647.    */
  1648.   //#define SD_ABORT_ON_ENDSTOP_HIT
  1649.   #if ENABLED(SD_ABORT_ON_ENDSTOP_HIT)
  1650.     //#define SD_ABORT_ON_ENDSTOP_HIT_GCODE "G28XY" // G-code to run on endstop hit (e.g., "G28XY" or "G27")
  1651.   #endif
  1652.  
  1653.   //#define SD_REPRINT_LAST_SELECTED_FILE // On print completion open the LCD Menu and select the same file
  1654.  
  1655.   //#define AUTO_REPORT_SD_STATUS         // Auto-report media status with 'M27 S<seconds>'
  1656.  
  1657.   /**
  1658.    * Support for USB thumb drives using an Arduino USB Host Shield or
  1659.    * equivalent MAX3421E breakout board. The USB thumb drive will appear
  1660.    * to Marlin as an SD card.
  1661.    *
  1662.    * The MAX3421E can be assigned the same pins as the SD card reader, with
  1663.    * the following pin mapping:
  1664.    *
  1665.    *    SCLK, MOSI, MISO --&gt; SCLK, MOSI, MISO
  1666.    *    INT              --&gt; SD_DETECT_PIN [1]
  1667.    *    SS               --&gt; SDSS
  1668.    *
  1669.    * [1] On AVR an interrupt-capable pin is best for UHS3 compatibility.
  1670.    */
  1671.   //#define USB_FLASH_DRIVE_SUPPORT
  1672.   #if ENABLED(USB_FLASH_DRIVE_SUPPORT)
  1673.     /**
  1674.      * USB Host Shield Library
  1675.      *
  1676.      * - UHS2 uses no interrupts and has been production-tested
  1677.      *   on a LulzBot TAZ Pro with a 32-bit Archim board.
  1678.      *
  1679.      * - UHS3 is newer code with better USB compatibility. But it
  1680.      *   is less tested and is known to interfere with Servos.
  1681.      *   [1] This requires USB_INTR_PIN to be interrupt-capable.
  1682.      */
  1683.     //#define USE_UHS2_USB
  1684.     //#define USE_UHS3_USB
  1685.  
  1686.     #define DISABLE_DUE_SD_MMC // Disable USB Host access to USB Drive to prevent hangs on block access for DUE platform
  1687.  
  1688.     /**
  1689.      * Native USB Host supported by some boards (USB OTG)
  1690.      */
  1691.     //#define USE_OTG_USB_HOST
  1692.  
  1693.     #if DISABLED(USE_OTG_USB_HOST)
  1694.       #define USB_CS_PIN    SDSS
  1695.       #define USB_INTR_PIN  SD_DETECT_PIN
  1696.     #endif
  1697.   #endif
  1698.  
  1699.   /**
  1700.    * When using a bootloader that supports SD-Firmware-Flashing,
  1701.    * add a menu item to activate SD-FW-Update on the next reboot.
  1702.    *
  1703.    * Requires ATMEGA2560 (Arduino Mega)
  1704.    *
  1705.    * Tested with this bootloader:
  1706.    *   https://github.com/FleetProbe/MicroBridge-Arduino-ATMega2560
  1707.    */
  1708.   //#define SD_FIRMWARE_UPDATE
  1709.   #if ENABLED(SD_FIRMWARE_UPDATE)
  1710.     #define SD_FIRMWARE_UPDATE_EEPROM_ADDR    0x1FF
  1711.     #define SD_FIRMWARE_UPDATE_ACTIVE_VALUE   0xF0
  1712.     #define SD_FIRMWARE_UPDATE_INACTIVE_VALUE 0xFF
  1713.   #endif
  1714.  
  1715.   /**
  1716.    * Enable this option if you have more than ~3K of unused flash space.
  1717.    * Marlin will embed all settings in the firmware binary as compressed data.
  1718.    * Use 'M503 C' to write the settings out to the SD Card as 'mc.zip'.
  1719.    * See docs/ConfigEmbedding.md for details on how to use 'mc-apply.py'.
  1720.    */
  1721.   //#define CONFIGURATION_EMBEDDING
  1722.  
  1723.   // Add an optimized binary file transfer mode, initiated with 'M28 B1'
  1724.   //#define BINARY_FILE_TRANSFER
  1725.  
  1726.   #if ENABLED(BINARY_FILE_TRANSFER)
  1727.     // Include extra facilities (e.g., 'M20 F') supporting firmware upload via BINARY_FILE_TRANSFER
  1728.     //#define CUSTOM_FIRMWARE_UPLOAD
  1729.   #endif
  1730.  
  1731.   /**
  1732.    * Set this option to one of the following (or the board's defaults apply):
  1733.    *
  1734.    *           LCD - Use the SD drive in the external LCD controller.
  1735.    *       ONBOARD - Use the SD drive on the control board.
  1736.    *  CUSTOM_CABLE - Use a custom cable to access the SD (as defined in a pins file).
  1737.    *
  1738.    * :[ 'LCD', 'ONBOARD', 'CUSTOM_CABLE' ]
  1739.    */
  1740.   //#define SDCARD_CONNECTION LCD
  1741.  
  1742.   // Enable if SD detect is rendered useless (e.g., by using an SD extender)
  1743.   //#define NO_SD_DETECT
  1744.  
  1745.   /**
  1746.    * Multiple volume support - EXPERIMENTAL.
  1747.    * Adds 'M21 Pm' / 'M21 S' / 'M21 U' to mount SD Card / USB Drive.
  1748.    */
  1749.   //#define MULTI_VOLUME
  1750.   #if ENABLED(MULTI_VOLUME)
  1751.     #define VOLUME_SD_ONBOARD
  1752.     #define VOLUME_USB_FLASH_DRIVE
  1753.     #define DEFAULT_VOLUME SV_SD_ONBOARD
  1754.     #define DEFAULT_SHARED_VOLUME SV_USB_FLASH_DRIVE
  1755.   #endif
  1756.  
  1757. #endif // SDSUPPORT
  1758.  
  1759. /**
  1760.  * By default an onboard SD card reader may be shared as a USB mass-
  1761.  * storage device. This option hides the SD card from the host PC.
  1762.  */
  1763. //#define NO_SD_HOST_DRIVE   // Disable SD Card access over USB (for security).
  1764.  
  1765. /**
  1766.  * Additional options for Graphical Displays
  1767.  *
  1768.  * Use the optimizations here to improve printing performance,
  1769.  * which can be adversely affected by graphical display drawing,
  1770.  * especially when doing several short moves, and when printing
  1771.  * on DELTA and SCARA machines.
  1772.  *
  1773.  * Some of these options may result in the display lagging behind
  1774.  * controller events, as there is a trade-off between reliable
  1775.  * printing performance versus fast display updates.
  1776.  */
  1777. #if HAS_MARLINUI_U8GLIB
  1778.   // Save many cycles by drawing a hollow frame or no frame on the Info Screen
  1779.   //#define XYZ_NO_FRAME
  1780.   #define XYZ_HOLLOW_FRAME
  1781.  
  1782.   // A bigger font is available for edit items. Costs 3120 bytes of flash.
  1783.   // Western only. Not available for Cyrillic, Kana, Turkish, Greek, or Chinese.
  1784.   //#define USE_BIG_EDIT_FONT
  1785.  
  1786.   // A smaller font may be used on the Info Screen. Costs 2434 bytes of flash.
  1787.   // Western only. Not available for Cyrillic, Kana, Turkish, Greek, or Chinese.
  1788.   //#define USE_SMALL_INFOFONT
  1789.  
  1790.   /**
  1791.    * Graphical Display Sleep
  1792.    *
  1793.    * The U8G library provides sleep / wake functions for SH1106, SSD1306,
  1794.    * SSD1309, and some other DOGM displays.
  1795.    * Enable this option to save energy and prevent OLED pixel burn-in.
  1796.    * Adds the menu item Configuration > LCD Timeout (m) to set a wait period
  1797.    * from 0 (disabled) to 99 minutes.
  1798.    */
  1799.   //#define DISPLAY_SLEEP_MINUTES 2  // (minutes) Timeout before turning off the screen. Set with M255 S.
  1800.  
  1801.   /**
  1802.    * ST7920-based LCDs can emulate a 16 x 4 character display using
  1803.    * the ST7920 character-generator for very fast screen updates.
  1804.    * Enable LIGHTWEIGHT_UI to use this special display mode.
  1805.    *
  1806.    * Since LIGHTWEIGHT_UI has limited space, the position and status
  1807.    * message occupy the same line. Set STATUS_EXPIRE_SECONDS to the
  1808.    * length of time to display the status message before clearing.
  1809.    *
  1810.    * Set STATUS_EXPIRE_SECONDS to zero to never clear the status.
  1811.    * This will prevent position updates from being displayed.
  1812.    */
  1813.   #if IS_U8GLIB_ST7920
  1814.     // Enable this option and reduce the value to optimize screen updates.
  1815.     // The normal delay is 10µs. Use the lowest value that still gives a reliable display.
  1816.     //#define DOGM_SPI_DELAY_US 5
  1817.  
  1818.     //#define LIGHTWEIGHT_UI
  1819.     #if ENABLED(LIGHTWEIGHT_UI)
  1820.       #define STATUS_EXPIRE_SECONDS 20
  1821.     #endif
  1822.   #endif
  1823.  
  1824.   /**
  1825.    * Status (Info) Screen customizations
  1826.    * These options may affect code size and screen render time.
  1827.    * Custom status screens can forcibly override these settings.
  1828.    */
  1829.   //#define STATUS_COMBINE_HEATERS    // Use combined heater images instead of separate ones
  1830.   //#define STATUS_HOTEND_NUMBERLESS  // Use plain hotend icons instead of numbered ones (with 2+ hotends)
  1831.   #define STATUS_HOTEND_INVERTED      // Show solid nozzle bitmaps when heating (Requires STATUS_HOTEND_ANIM for numbered hotends)
  1832.   #define STATUS_HOTEND_ANIM          // Use a second bitmap to indicate hotend heating
  1833.   #define STATUS_BED_ANIM             // Use a second bitmap to indicate bed heating
  1834.   #define STATUS_CHAMBER_ANIM         // Use a second bitmap to indicate chamber heating
  1835.   //#define STATUS_CUTTER_ANIM        // Use a second bitmap to indicate spindle / laser active
  1836.   //#define STATUS_COOLER_ANIM        // Use a second bitmap to indicate laser cooling
  1837.   //#define STATUS_FLOWMETER_ANIM     // Use multiple bitmaps to indicate coolant flow
  1838.   //#define STATUS_ALT_BED_BITMAP     // Use the alternative bed bitmap
  1839.   //#define STATUS_ALT_FAN_BITMAP     // Use the alternative fan bitmap
  1840.   //#define STATUS_FAN_FRAMES 3       // :[0,1,2,3,4] Number of fan animation frames
  1841.   //#define STATUS_HEAT_PERCENT       // Show heating in a progress bar
  1842.   //#define BOOT_MARLIN_LOGO_ANIMATED // Animated Marlin logo. Costs ~3260 (or ~940) bytes of flash.
  1843.  
  1844.   // Frivolous Game Options
  1845.   //#define MARLIN_BRICKOUT
  1846.   //#define MARLIN_INVADERS
  1847.   //#define MARLIN_SNAKE
  1848.   //#define GAMES_EASTER_EGG          // Add extra blank lines above the "Games" sub-menu
  1849.  
  1850. #endif // HAS_MARLINUI_U8GLIB
  1851.  
  1852. #if HAS_MARLINUI_U8GLIB || IS_DWIN_MARLINUI
  1853.   #define MENU_HOLLOW_FRAME           // Enable to save many cycles by drawing a hollow frame on Menu Screens
  1854.   //#define OVERLAY_GFX_REVERSE       // Swap the CW/CCW indicators in the graphics overlay
  1855. #endif
  1856.  
  1857. //
  1858. // Additional options for DGUS / DWIN displays
  1859. //
  1860. #if HAS_DGUS_LCD
  1861.   #define LCD_BAUDRATE 115200
  1862.  
  1863.   #define DGUS_RX_BUFFER_SIZE 128
  1864.   #define DGUS_TX_BUFFER_SIZE 48
  1865.   //#define SERIAL_STATS_RX_BUFFER_OVERRUNS  // Fix Rx overrun situation (Currently only for AVR)
  1866.  
  1867.   #define DGUS_UPDATE_INTERVAL_MS  500    // (ms) Interval between automatic screen updates
  1868.  
  1869.   #if ANY(DGUS_LCD_UI_FYSETC, DGUS_LCD_UI_MKS, DGUS_LCD_UI_HIPRECY)
  1870.     #define DGUS_PRINT_FILENAME           // Display the filename during printing
  1871.     #define DGUS_PREHEAT_UI               // Display a preheat screen during heatup
  1872.  
  1873.     #if EITHER(DGUS_LCD_UI_FYSETC, DGUS_LCD_UI_MKS)
  1874.       //#define DGUS_UI_MOVE_DIS_OPTION   // Disabled by default for FYSETC and MKS
  1875.     #else
  1876.       #define DGUS_UI_MOVE_DIS_OPTION     // Enabled by default for UI_HIPRECY
  1877.     #endif
  1878.  
  1879.     #define DGUS_FILAMENT_LOADUNLOAD
  1880.     #if ENABLED(DGUS_FILAMENT_LOADUNLOAD)
  1881.       #define DGUS_FILAMENT_PURGE_LENGTH 10
  1882.       #define DGUS_FILAMENT_LOAD_LENGTH_PER_TIME 0.5 // (mm) Adjust in proportion to DGUS_UPDATE_INTERVAL_MS
  1883.     #endif
  1884.  
  1885.     #define DGUS_UI_WAITING               // Show a "waiting" screen between some screens
  1886.     #if ENABLED(DGUS_UI_WAITING)
  1887.       #define DGUS_UI_WAITING_STATUS 10
  1888.       #define DGUS_UI_WAITING_STATUS_PERIOD 8 // Increase to slower waiting status looping
  1889.     #endif
  1890.   #endif
  1891. #endif // HAS_DGUS_LCD
  1892.  
  1893. //
  1894. // Additional options for AnyCubic Chiron TFT displays
  1895. //
  1896. #if ENABLED(ANYCUBIC_LCD_CHIRON)
  1897.   // By default the type of panel is automatically detected.
  1898.   // Enable one of these options if you know the panel type.
  1899.   //#define CHIRON_TFT_STANDARD
  1900.   //#define CHIRON_TFT_NEW
  1901.  
  1902.   // Enable the longer Anycubic powerup startup tune
  1903.   //#define AC_DEFAULT_STARTUP_TUNE
  1904.  
  1905.   /**
  1906.    * Display Folders
  1907.    * By default the file browser lists all G-code files (including those in subfolders) in a flat list.
  1908.    * Enable this option to display a hierarchical file browser.
  1909.    *
  1910.    * NOTES:
  1911.    * - Without this option it helps to enable SDCARD_SORT_ALPHA so files are sorted before/after folders.
  1912.    * - When used with the "new" panel, folder names will also have '.gcode' appended to their names.
  1913.    *   This hack is currently required to force the panel to show folders.
  1914.    */
  1915.   #define AC_SD_FOLDER_VIEW
  1916. #endif
  1917.  
  1918. //
  1919. // Specify additional languages for the UI. Default specified by LCD_LANGUAGE.
  1920. //
  1921. #if ANY(DOGLCD, TFT_COLOR_UI, TOUCH_UI_FTDI_EVE, IS_DWIN_MARLINUI)
  1922.   //#define LCD_LANGUAGE_2 fr
  1923.   //#define LCD_LANGUAGE_3 de
  1924.   //#define LCD_LANGUAGE_4 es
  1925.   //#define LCD_LANGUAGE_5 it
  1926.   #ifdef LCD_LANGUAGE_2
  1927.     //#define LCD_LANGUAGE_AUTO_SAVE // Automatically save language to EEPROM on change
  1928.   #endif
  1929. #endif
  1930.  
  1931. //
  1932. // Touch UI for the FTDI Embedded Video Engine (EVE)
  1933. //
  1934. #if ENABLED(TOUCH_UI_FTDI_EVE)
  1935.   // Display board used
  1936.   //#define LCD_FTDI_VM800B35A        // FTDI 3.5" with FT800 (320x240)
  1937.   //#define LCD_4DSYSTEMS_4DLCD_FT843 // 4D Systems 4.3" (480x272)
  1938.   //#define LCD_HAOYU_FT800CB         // Haoyu with 4.3" or 5" (480x272)
  1939.   //#define LCD_HAOYU_FT810CB         // Haoyu with 5" (800x480)
  1940.   //#define LCD_LULZBOT_CLCD_UI       // LulzBot Color LCD UI
  1941.   //#define LCD_FYSETC_TFT81050       // FYSETC with 5" (800x480)
  1942.   //#define LCD_EVE3_50G              // Matrix Orbital 5.0", 800x480, BT815
  1943.   //#define LCD_EVE2_50G              // Matrix Orbital 5.0", 800x480, FT813
  1944.  
  1945.   // Correct the resolution if not using the stock TFT panel.
  1946.   //#define TOUCH_UI_320x240
  1947.   //#define TOUCH_UI_480x272
  1948.   //#define TOUCH_UI_800x480
  1949.  
  1950.   // Mappings for boards with a standard RepRapDiscount Display connector
  1951.   //#define AO_EXP1_PINMAP      // LulzBot CLCD UI EXP1 mapping
  1952.   //#define AO_EXP2_PINMAP      // LulzBot CLCD UI EXP2 mapping
  1953.   //#define CR10_TFT_PINMAP     // Rudolph Riedel's CR10 pin mapping
  1954.   //#define S6_TFT_PINMAP       // FYSETC S6 pin mapping
  1955.   //#define F6_TFT_PINMAP       // FYSETC F6 pin mapping
  1956.  
  1957.   //#define OTHER_PIN_LAYOUT  // Define pins manually below
  1958.   #if ENABLED(OTHER_PIN_LAYOUT)
  1959.     // Pins for CS and MOD_RESET (PD) must be chosen
  1960.     #define CLCD_MOD_RESET  9
  1961.     #define CLCD_SPI_CS    10
  1962.  
  1963.     // If using software SPI, specify pins for SCLK, MOSI, MISO
  1964.     //#define CLCD_USE_SOFT_SPI
  1965.     #if ENABLED(CLCD_USE_SOFT_SPI)
  1966.       #define CLCD_SOFT_SPI_MOSI 11
  1967.       #define CLCD_SOFT_SPI_MISO 12
  1968.       #define CLCD_SOFT_SPI_SCLK 13
  1969.     #endif
  1970.   #endif
  1971.  
  1972.   // Display Orientation. An inverted (i.e. upside-down) display
  1973.   // is supported on the FT800. The FT810 and beyond also support
  1974.   // portrait and mirrored orientations.
  1975.   //#define TOUCH_UI_INVERTED
  1976.   //#define TOUCH_UI_PORTRAIT
  1977.   //#define TOUCH_UI_MIRRORED
  1978.  
  1979.   // UTF8 processing and rendering.
  1980.   // Unsupported characters are shown as '?'.
  1981.   //#define TOUCH_UI_USE_UTF8
  1982.   #if ENABLED(TOUCH_UI_USE_UTF8)
  1983.     // Western accents support. These accented characters use
  1984.     // combined bitmaps and require relatively little storage.
  1985.     #define TOUCH_UI_UTF8_WESTERN_CHARSET
  1986.     #if ENABLED(TOUCH_UI_UTF8_WESTERN_CHARSET)
  1987.       // Additional character groups. These characters require
  1988.       // full bitmaps and take up considerable storage:
  1989.       //#define TOUCH_UI_UTF8_SUPERSCRIPTS  // ¹ ² ³
  1990.       //#define TOUCH_UI_UTF8_COPYRIGHT     // © ®
  1991.       //#define TOUCH_UI_UTF8_GERMANIC      // ß
  1992.       //#define TOUCH_UI_UTF8_SCANDINAVIAN  // Æ Ð Ø Þ æ ð ø þ
  1993.       //#define TOUCH_UI_UTF8_PUNCTUATION   // « » ¿ ¡
  1994.       //#define TOUCH_UI_UTF8_CURRENCY      // ¢ £ ¤ ¥
  1995.       //#define TOUCH_UI_UTF8_ORDINALS      // º ª
  1996.       //#define TOUCH_UI_UTF8_MATHEMATICS   // ± × ÷
  1997.       //#define TOUCH_UI_UTF8_FRACTIONS     // ¼ ½ ¾
  1998.       //#define TOUCH_UI_UTF8_SYMBOLS       // µ ¶ ¦ § ¬
  1999.     #endif
  2000.  
  2001.     // Cyrillic character set, costs about 27KiB of flash
  2002.     //#define TOUCH_UI_UTF8_CYRILLIC_CHARSET
  2003.   #endif
  2004.  
  2005.   // Use a smaller font when labels don't fit buttons
  2006.   #define TOUCH_UI_FIT_TEXT
  2007.  
  2008.   // Use a numeric passcode for "Screen lock" keypad.
  2009.   // (recommended for smaller displays)
  2010.   //#define TOUCH_UI_PASSCODE
  2011.  
  2012.   // Output extra debug info for Touch UI events
  2013.   //#define TOUCH_UI_DEBUG
  2014.  
  2015.   // Developer menu (accessed by touching "About Printer" copyright text)
  2016.   //#define TOUCH_UI_DEVELOPER_MENU
  2017. #endif
  2018.  
  2019. //
  2020. // Classic UI Options
  2021. //
  2022. #if TFT_SCALED_DOGLCD
  2023.   //#define TFT_MARLINUI_COLOR 0xFFFF // White
  2024.   //#define TFT_MARLINBG_COLOR 0x0000 // Black
  2025.   //#define TFT_DISABLED_COLOR 0x0003 // Almost black
  2026.   //#define TFT_BTCANCEL_COLOR 0xF800 // Red
  2027.   //#define TFT_BTARROWS_COLOR 0xDEE6 // 11011 110111 00110 Yellow
  2028.   //#define TFT_BTOKMENU_COLOR 0x145F // 00010 100010 11111 Cyan
  2029. #endif
  2030.  
  2031. //
  2032. // ADC Button Debounce
  2033. //
  2034. #if HAS_ADC_BUTTONS
  2035.   #define ADC_BUTTON_DEBOUNCE_DELAY 16  // Increase if buttons bounce or repeat too fast
  2036. #endif
  2037.  
  2038. // @section safety
  2039.  
  2040. /**
  2041.  * The watchdog hardware timer will do a reset and disable all outputs
  2042.  * if the firmware gets too overloaded to read the temperature sensors.
  2043.  *
  2044.  * If you find that watchdog reboot causes your AVR board to hang forever,
  2045.  * enable WATCHDOG_RESET_MANUAL to use a custom timer instead of WDTO.
  2046.  * NOTE: This method is less reliable as it can only catch hangups while
  2047.  * interrupts are enabled.
  2048.  */
  2049. #define USE_WATCHDOG
  2050. #if ENABLED(USE_WATCHDOG)
  2051.   //#define WATCHDOG_RESET_MANUAL
  2052. #endif
  2053.  
  2054. // @section lcd
  2055.  
  2056. /**
  2057.  * Babystepping enables movement of the axes by tiny increments without changing
  2058.  * the current position values. This feature is used primarily to adjust the Z
  2059.  * axis in the first layer of a print in real-time.
  2060.  *
  2061.  * Warning: Does not respect endstops!
  2062.  */
  2063. #define BABYSTEPPING
  2064. #if ENABLED(BABYSTEPPING)
  2065.   #define INTEGRATED_BABYSTEPPING         // EXPERIMENTAL integration of babystepping into the Stepper ISR
  2066.   #define BABYSTEP_WITHOUT_HOMING
  2067.   #define BABYSTEP_ALWAYS_AVAILABLE       // Allow babystepping at all times (not just during movement).
  2068.   //#define BABYSTEP_XY                     // Also enable X/Y Babystepping. Not supported on DELTA!
  2069.   #define BABYSTEP_INVERT_Z false           // Change if Z babysteps should go the other way
  2070.   //#define BABYSTEP_MILLIMETER_UNITS       // Specify BABYSTEP_MULTIPLICATOR_(XY|Z) in mm instead of micro-steps
  2071.   #define BABYSTEP_MULTIPLICATOR_Z  1       // (steps or mm) Steps or millimeter distance for each Z babystep
  2072.   #define BABYSTEP_MULTIPLICATOR_XY 1       // (steps or mm) Steps or millimeter distance for each XY babystep
  2073.  
  2074.   #define DOUBLECLICK_FOR_Z_BABYSTEPPING    // Double-click on the Status Screen for Z Babystepping.
  2075.   #if ENABLED(DOUBLECLICK_FOR_Z_BABYSTEPPING)
  2076.     #define DOUBLECLICK_MAX_INTERVAL 1250   // Maximum interval between clicks, in milliseconds.
  2077.                                             // Note: Extra time may be added to mitigate controller latency.
  2078.     //#define MOVE_Z_WHEN_IDLE              // Jump to the move Z menu on doubleclick when printer is idle.
  2079.     #if ENABLED(MOVE_Z_WHEN_IDLE)
  2080.       #define MOVE_Z_IDLE_MULTIPLICATOR 1   // Multiply 1mm by this factor for the move step size.
  2081.     #endif
  2082.   #endif
  2083.  
  2084.   #define BABYSTEP_DISPLAY_TOTAL          // Display total babysteps since last G28
  2085.  
  2086.   #define BABYSTEP_ZPROBE_OFFSET          // Combine M851 Z and Babystepping
  2087.   #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  2088.     //#define BABYSTEP_HOTEND_Z_OFFSET      // For multiple hotends, babystep relative Z offsets
  2089.     //#define BABYSTEP_ZPROBE_GFX_OVERLAY   // Enable graphical overlay on Z-offset editor
  2090.   #endif
  2091. #endif
  2092.  
  2093. // @section extruder
  2094.  
  2095. /**
  2096.  * Linear Pressure Control v1.5
  2097.  *
  2098.  * Assumption: advance [steps] = k * (delta velocity [steps/s])
  2099.  * K=0 means advance disabled.
  2100.  *
  2101.  * NOTE: K values for LIN_ADVANCE 1.5 differ from earlier versions!
  2102.  *
  2103.  * Set K around 0.22 for 3mm PLA Direct Drive with ~6.5cm between the drive gear and heatbreak.
  2104.  * Larger K values will be needed for flexible filament and greater distances.
  2105.  * If this algorithm produces a higher speed offset than the extruder can handle (compared to E jerk)
  2106.  * print acceleration will be reduced during the affected moves to keep within the limit.
  2107.  *
  2108.  * See https://marlinfw.org/docs/features/lin_advance.html for full instructions.
  2109.  */
  2110. //#define LIN_ADVANCE
  2111. #if ENABLED(LIN_ADVANCE)
  2112.   #if ENABLED(DISTINCT_E_FACTORS)
  2113.     #define ADVANCE_K { 0.22 }    // (mm) Compression length per 1mm/s extruder speed, per extruder
  2114.   #else
  2115.     #define ADVANCE_K 0.22        // (mm) Compression length applying to all extruders
  2116.   #endif
  2117.   //#define ADVANCE_K_EXTRA       // Add a second linear advance constant, configurable with M900 L.
  2118.   //#define LA_DEBUG              // Print debug information to serial during operation. Disable for production use.
  2119.   //#define EXPERIMENTAL_SCURVE   // Allow S-Curve Acceleration to be used with LA.
  2120.   //#define ALLOW_LOW_EJERK       // Allow a DEFAULT_EJERK value of >= 1024
  2121.   // Enable to have the controller send XON/XOFF control characters to
  2122.   // the host to signal the RX buffer is becoming full.
  2123.   //#define SERIAL_XON_XOFF
  2124. #endif
  2125.  
  2126. #if ENABLED(SDSUPPORT)
  2127.   // Enable this option to collect and display the maximum
  2128.   // RX queue usage after transferring a file to SD.
  2129.   //#define SERIAL_STATS_MAX_RX_QUEUED
  2130.  
  2131.   // Enable this option to collect and display the number
  2132.   // of dropped bytes after a file transfer to SD.
  2133.   //#define SERIAL_STATS_DROPPED_RX
  2134. #endif
  2135.  
  2136. // Monitor RX buffer usage
  2137. // Dump an error to the serial port if the serial receive buffer overflows.
  2138. // If you see these errors, increase the RX_BUFFER_SIZE value.
  2139. // Not supported on all platforms.
  2140. //#define RX_BUFFER_MONITOR
  2141.  
  2142. /**
  2143.  * Emergency Command Parser
  2144.  *
  2145.  * Add a low-level parser to intercept certain commands as they
  2146.  * enter the serial receive buffer, so they cannot be blocked.
  2147.  * Currently handles M108, M112, M410, M876
  2148.  * NOTE: Not yet implemented for all platforms.
  2149.  */
  2150. //#define EMERGENCY_PARSER
  2151.  
  2152. /**
  2153.  * Realtime Reporting (requires EMERGENCY_PARSER)
  2154.  *
  2155.  * - Report position and state of the machine (like Grbl).
  2156.  * - Auto-report position during long moves.
  2157.  * - Useful for CNC/LASER.
  2158.  *
  2159.  * Adds support for commands:
  2160.  *  S000 : Report State and Position while moving.
  2161.  *  P000 : Instant Pause / Hold while moving.
  2162.  *  R000 : Resume from Pause / Hold.
  2163.  *
  2164.  * - During Hold all Emergency Parser commands are available, as usual.
  2165.  * - Enable NANODLP_Z_SYNC and NANODLP_ALL_AXIS for move command end-state reports.
  2166.  */
  2167. //#define REALTIME_REPORTING_COMMANDS
  2168. #if ENABLED(REALTIME_REPORTING_COMMANDS)
  2169.   //#define FULL_REPORT_TO_HOST_FEATURE   // Auto-report the machine status like Grbl CNC
  2170. #endif
  2171.  
  2172. // Bad Serial-connections can miss a received command by sending an 'ok'
  2173. // Therefore some clients abort after 30 seconds in a timeout.
  2174. // Some other clients start sending commands while receiving a 'wait'.
  2175. // This "wait" is only sent when the buffer is empty. 1 second is a good value here.
  2176. //#define NO_TIMEOUTS 1000 // Milliseconds
  2177.  
  2178. // Some clients will have this feature soon. This could make the NO_TIMEOUTS unnecessary.
  2179. //#define ADVANCED_OK
  2180.  
  2181. // Printrun may have trouble receiving long strings all at once.
  2182. // This option inserts short delays between lines of serial output.
  2183. #define SERIAL_OVERRUN_PROTECTION
  2184.  
  2185. // For serial echo, the number of digits after the decimal point
  2186. //#define SERIAL_FLOAT_PRECISION 4
  2187.  
  2188. /**
  2189.  * Set the number of proportional font spaces required to fill up a typical character space.
  2190.  * This can help to better align the output of commands like `G29 O` Mesh Output.
  2191.  *
  2192.  * For clients that use a fixed-width font (like OctoPrint), leave this set to 1.0.
  2193.  * Otherwise, adjust according to your client and font.
  2194.  */
  2195. #define PROPORTIONAL_FONT_RATIO 1.0
  2196.  
  2197. // @section extras
  2198.  
  2199. /**
  2200.  * Extra Fan Speed
  2201.  * Adds a secondary fan speed for each print-cooling fan.
  2202.  *   'M106 P<fan> T3-255' : Set a secondary speed for <fan>
  2203.  *   'M106 P<fan> T2'     : Use the set secondary speed
  2204.  *   'M106 P<fan> T1'     : Restore the previous fan speed
  2205.  */
  2206. //#define EXTRA_FAN_SPEED
  2207.  
  2208. /**
  2209.  * Firmware-based and LCD-controlled retract
  2210.  *
  2211.  * Add G10 / G11 commands for automatic firmware-based retract / recover.
  2212.  * Use M207 and M208 to define parameters for retract / recover.
  2213.  *
  2214.  * Use M209 to enable or disable auto-retract.
  2215.  * With auto-retract enabled, all G1 E moves within the set range
  2216.  * will be converted to firmware-based retract/recover moves.
  2217.  *
  2218.  * Be sure to turn off auto-retract during filament change.
  2219.  *
  2220.  * Note that M207 / M208 / M209 settings are saved to EEPROM.
  2221.  */
  2222. //#define FWRETRACT
  2223. #if ENABLED(FWRETRACT)
  2224.   #define FWRETRACT_AUTORETRACT             // Override slicer retractions
  2225.   #if ENABLED(FWRETRACT_AUTORETRACT)
  2226.     #define MIN_AUTORETRACT             0.1 // (mm) Don't convert E moves under this length
  2227.     #define MAX_AUTORETRACT            10.0 // (mm) Don't convert E moves over this length
  2228.   #endif
  2229.   #define RETRACT_LENGTH                3   // (mm) Default retract length (positive value)
  2230.   #define RETRACT_LENGTH_SWAP          13   // (mm) Default swap retract length (positive value)
  2231.   #define RETRACT_FEEDRATE             45   // (mm/s) Default feedrate for retracting
  2232.   #define RETRACT_ZRAISE                0   // (mm) Default retract Z-raise
  2233.   #define RETRACT_RECOVER_LENGTH        0   // (mm) Default additional recover length (added to retract length on recover)
  2234.   #define RETRACT_RECOVER_LENGTH_SWAP   0   // (mm) Default additional swap recover length (added to retract length on recover from toolchange)
  2235.   #define RETRACT_RECOVER_FEEDRATE      8   // (mm/s) Default feedrate for recovering from retraction
  2236.   #define RETRACT_RECOVER_FEEDRATE_SWAP 8   // (mm/s) Default feedrate for recovering from swap retraction
  2237.   #if ENABLED(MIXING_EXTRUDER)
  2238.     //#define RETRACT_SYNC_MIXING           // Retract and restore all mixing steppers simultaneously
  2239.   #endif
  2240. #endif
  2241.  
  2242. /**
  2243.  * Universal tool change settings.
  2244.  * Applies to all types of extruders except where explicitly noted.
  2245.  */
  2246. #if HAS_MULTI_EXTRUDER
  2247.   // Z raise distance for tool-change, as needed for some extruders
  2248.   #define TOOLCHANGE_ZRAISE                 2 // (mm)
  2249.   //#define TOOLCHANGE_ZRAISE_BEFORE_RETRACT  // Apply raise before swap retraction (if enabled)
  2250.   //#define TOOLCHANGE_NO_RETURN              // Never return to previous position on tool-change
  2251.   #if ENABLED(TOOLCHANGE_NO_RETURN)
  2252.     //#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X"   // Extra G-code to run after tool-change
  2253.   #endif
  2254.  
  2255.   /**
  2256.    * Extra G-code to run while executing tool-change commands. Can be used to use an additional
  2257.    * stepper motor (e.g., I axis in Configuration.h) to drive the tool-changer.
  2258.    */
  2259.   //#define EVENT_GCODE_TOOLCHANGE_T0 "G28 A\nG1 A0" // Extra G-code to run while executing tool-change command T0
  2260.   //#define EVENT_GCODE_TOOLCHANGE_T1 "G1 A10"       // Extra G-code to run while executing tool-change command T1
  2261.   //#define EVENT_GCODE_TOOLCHANGE_ALWAYS_RUN        // Always execute above G-code sequences. Use with caution!
  2262.  
  2263.   /**
  2264.    * Tool Sensors detect when tools have been picked up or dropped.
  2265.    * Requires the pins TOOL_SENSOR1_PIN, TOOL_SENSOR2_PIN, etc.
  2266.    */
  2267.   //#define TOOL_SENSOR
  2268.  
  2269.   /**
  2270.    * Retract and prime filament on tool-change to reduce
  2271.    * ooze and stringing and to get cleaner transitions.
  2272.    */
  2273.   //#define TOOLCHANGE_FILAMENT_SWAP
  2274.   #if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
  2275.     // Load / Unload
  2276.     #define TOOLCHANGE_FS_LENGTH              12  // (mm) Load / Unload length
  2277.     #define TOOLCHANGE_FS_EXTRA_RESUME_LENGTH  0  // (mm) Extra length for better restart. Adjust with LCD or M217 B.
  2278.     #define TOOLCHANGE_FS_RETRACT_SPEED   (50*60) // (mm/min) (Unloading)
  2279.     #define TOOLCHANGE_FS_UNRETRACT_SPEED (25*60) // (mm/min) (On SINGLENOZZLE or Bowden loading must be slowed down)
  2280.  
  2281.     // Longer prime to clean out a SINGLENOZZLE
  2282.     #define TOOLCHANGE_FS_EXTRA_PRIME          0  // (mm) Extra priming length
  2283.     #define TOOLCHANGE_FS_PRIME_SPEED    (4.6*60) // (mm/min) Extra priming feedrate
  2284.     #define TOOLCHANGE_FS_WIPE_RETRACT         0  // (mm) Cutting retraction out of park, for less stringing, better wipe, etc. Adjust with LCD or M217 G.
  2285.  
  2286.     // Cool after prime to reduce stringing
  2287.     #define TOOLCHANGE_FS_FAN                 -1  // Fan index or -1 to skip
  2288.     #define TOOLCHANGE_FS_FAN_SPEED          255  // 0-255
  2289.     #define TOOLCHANGE_FS_FAN_TIME            10  // (seconds)
  2290.  
  2291.     // Use TOOLCHANGE_FS_PRIME_SPEED feedrate the first time each extruder is primed
  2292.     //#define TOOLCHANGE_FS_SLOW_FIRST_PRIME
  2293.  
  2294.     /**
  2295.      * Prime T0 the first time T0 is sent to the printer:
  2296.      *  [ Power-On -> T0 { Activate & Prime T0 } -> T1 { Retract T0, Activate & Prime T1 } ]
  2297.      * If disabled, no priming on T0 until switching back to T0 from another extruder:
  2298.      *  [ Power-On -> T0 { T0 Activated } -> T1 { Activate & Prime T1 } -> T0 { Retract T1, Activate & Prime T0 } ]
  2299.      * Enable with M217 V1 before printing to avoid unwanted priming on host connect.
  2300.      */
  2301.     //#define TOOLCHANGE_FS_PRIME_FIRST_USED
  2302.  
  2303.     /**
  2304.      * Tool Change Migration
  2305.      * This feature provides G-code and LCD options to switch tools mid-print.
  2306.      * All applicable tool properties are migrated so the print can continue.
  2307.      * Tools must be closely matching and other restrictions may apply.
  2308.      * Useful to:
  2309.      *   - Change filament color without interruption
  2310.      *   - Switch spools automatically on filament runout
  2311.      *   - Switch to a different nozzle on an extruder jam
  2312.      */
  2313.     #define TOOLCHANGE_MIGRATION_FEATURE
  2314.  
  2315.   #endif
  2316.  
  2317.   /**
  2318.    * Position to park head during tool change.
  2319.    * Doesn't apply to SWITCHING_TOOLHEAD, DUAL_X_CARRIAGE, or PARKING_EXTRUDER
  2320.    */
  2321.   //#define TOOLCHANGE_PARK
  2322.   #if ENABLED(TOOLCHANGE_PARK)
  2323.     #define TOOLCHANGE_PARK_XY    { X_MIN_POS + 10, Y_MIN_POS + 10 }
  2324.     #define TOOLCHANGE_PARK_XY_FEEDRATE 6000  // (mm/min)
  2325.     //#define TOOLCHANGE_PARK_X_ONLY          // X axis only move
  2326.     //#define TOOLCHANGE_PARK_Y_ONLY          // Y axis only move
  2327.   #endif
  2328. #endif // HAS_MULTI_EXTRUDER
  2329.  
  2330. // @section advanced pause
  2331.  
  2332. /**
  2333.  * Advanced Pause for Filament Change
  2334.  *  - Adds the G-code M600 Filament Change to initiate a filament change.
  2335.  *  - This feature is required for the default FILAMENT_RUNOUT_SCRIPT.
  2336.  *
  2337.  * Requirements:
  2338.  *  - For Filament Change parking enable and configure NOZZLE_PARK_FEATURE.
  2339.  *  - For user interaction enable an LCD display, HOST_PROMPT_SUPPORT, or EMERGENCY_PARSER.
  2340.  *
  2341.  * Enable PARK_HEAD_ON_PAUSE to add the G-code M125 Pause and Park.
  2342.  */
  2343. //#define ADVANCED_PAUSE_FEATURE
  2344. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  2345.   #define PAUSE_PARK_RETRACT_FEEDRATE         60  // (mm/s) Initial retract feedrate.
  2346.   #define PAUSE_PARK_RETRACT_LENGTH            2  // (mm) Initial retract.
  2347.                                                   // This short retract is done immediately, before parking the nozzle.
  2348.   #define FILAMENT_CHANGE_UNLOAD_FEEDRATE     10  // (mm/s) Unload filament feedrate. This can be pretty fast.
  2349.   #define FILAMENT_CHANGE_UNLOAD_ACCEL        25  // (mm/s^2) Lower acceleration may allow a faster feedrate.
  2350.   #define FILAMENT_CHANGE_UNLOAD_LENGTH      100  // (mm) The length of filament for a complete unload.
  2351.                                                   //   For Bowden, the full length of the tube and nozzle.
  2352.                                                   //   For direct drive, the full length of the nozzle.
  2353.                                                   //   Set to 0 for manual unloading.
  2354.   #define FILAMENT_CHANGE_SLOW_LOAD_FEEDRATE   6  // (mm/s) Slow move when starting load.
  2355.   #define FILAMENT_CHANGE_SLOW_LOAD_LENGTH     0  // (mm) Slow length, to allow time to insert material.
  2356.                                                   // 0 to disable start loading and skip to fast load only
  2357.   #define FILAMENT_CHANGE_FAST_LOAD_FEEDRATE   6  // (mm/s) Load filament feedrate. This can be pretty fast.
  2358.   #define FILAMENT_CHANGE_FAST_LOAD_ACCEL     25  // (mm/s^2) Lower acceleration may allow a faster feedrate.
  2359.   #define FILAMENT_CHANGE_FAST_LOAD_LENGTH     0  // (mm) Load length of filament, from extruder gear to nozzle.
  2360.                                                   //   For Bowden, the full length of the tube and nozzle.
  2361.                                                   //   For direct drive, the full length of the nozzle.
  2362.   //#define ADVANCED_PAUSE_CONTINUOUS_PURGE       // Purge continuously up to the purge length until interrupted.
  2363.   #define ADVANCED_PAUSE_PURGE_FEEDRATE        3  // (mm/s) Extrude feedrate (after loading). Should be slower than load feedrate.
  2364.   #define ADVANCED_PAUSE_PURGE_LENGTH         50  // (mm) Length to extrude after loading.
  2365.                                                   //   Set to 0 for manual extrusion.
  2366.                                                   //   Filament can be extruded repeatedly from the Filament Change menu
  2367.                                                   //   until extrusion is consistent, and to purge old filament.
  2368.   #define ADVANCED_PAUSE_RESUME_PRIME          0  // (mm) Extra distance to prime nozzle after returning from park.
  2369.   //#define ADVANCED_PAUSE_FANS_PAUSE             // Turn off print-cooling fans while the machine is paused.
  2370.  
  2371.                                                   // Filament Unload does a Retract, Delay, and Purge first:
  2372.   #define FILAMENT_UNLOAD_PURGE_RETRACT       13  // (mm) Unload initial retract length.
  2373.   #define FILAMENT_UNLOAD_PURGE_DELAY       5000  // (ms) Delay for the filament to cool after retract.
  2374.   #define FILAMENT_UNLOAD_PURGE_LENGTH         8  // (mm) An unretract is done, then this length is purged.
  2375.   #define FILAMENT_UNLOAD_PURGE_FEEDRATE      25  // (mm/s) feedrate to purge before unload
  2376.  
  2377.   #define PAUSE_PARK_NOZZLE_TIMEOUT           45  // (seconds) Time limit before the nozzle is turned off for safety.
  2378.   #define FILAMENT_CHANGE_ALERT_BEEPS         10  // Number of alert beeps to play when a response is needed.
  2379.   #define PAUSE_PARK_NO_STEPPER_TIMEOUT           // Enable for XYZ steppers to stay powered on during filament change.
  2380.   //#define FILAMENT_CHANGE_RESUME_ON_INSERT      // Automatically continue / load filament when runout sensor is triggered again.
  2381.   //#define PAUSE_REHEAT_FAST_RESUME              // Reduce number of waits by not prompting again post-timeout before continuing.
  2382.  
  2383.   //#define PARK_HEAD_ON_PAUSE                    // Park the nozzle during pause and filament change.
  2384.   //#define HOME_BEFORE_FILAMENT_CHANGE           // If needed, home before parking for filament change
  2385.  
  2386.   //#define FILAMENT_LOAD_UNLOAD_GCODES           // Add M701/M702 Load/Unload G-codes, plus Load/Unload in the LCD Prepare menu.
  2387.   //#define FILAMENT_UNLOAD_ALL_EXTRUDERS         // Allow M702 to unload all extruders above a minimum target temp (as set by M302)
  2388. #endif
  2389.  
  2390. // @section tmc_smart
  2391.  
  2392. /**
  2393.  * Trinamic Smart Drivers
  2394.  *
  2395.  * To use TMC2130, TMC2160, TMC2660, TMC5130, TMC5160 stepper drivers in SPI mode:
  2396.  *  - Connect your SPI pins to the Hardware SPI interface on the board.
  2397.  *    Some boards have simple jumper connections! See your board's documentation.
  2398.  *  - Define the required Stepper CS pins in your `pins_MYBOARD.h` file.
  2399.  *    (See the RAMPS pins, for example.)
  2400.  *  - You can also use Software SPI with GPIO pins instead of Hardware SPI.
  2401.  *
  2402.  * To use TMC220x stepper drivers with Serial UART:
  2403.  *  - Connect PDN_UART to the #_SERIAL_TX_PIN through a 1K resistor.
  2404.  *    For reading capabilities also connect PDN_UART to #_SERIAL_RX_PIN with no resistor.
  2405.  *    Some boards have simple jumper connections! See your board's documentation.
  2406.  *  - These drivers can also be used with Hardware Serial.
  2407.  *
  2408.  * The TMC26XStepper library is required for TMC26X stepper drivers.
  2409.  *   https://github.com/MarlinFirmware/TMC26XStepper
  2410.  *
  2411.  * The TMCStepper library is required for other TMC stepper drivers.
  2412.  *   https://github.com/teemuatlut/TMCStepper
  2413.  *
  2414.  * @section tmc/config
  2415.  */
  2416. #if HAS_TRINAMIC_CONFIG || HAS_TMC26X
  2417.  
  2418.   #define HOLD_MULTIPLIER    0.5  // Scales down the holding current from run current
  2419.  
  2420.   /**
  2421.    * Interpolate microsteps to 256
  2422.    * Override for each driver with <driver>_INTERPOLATE settings below
  2423.    */
  2424.   #define INTERPOLATE      true
  2425.  
  2426.   #if AXIS_IS_TMC_CONFIG(X)
  2427.     #define X_CURRENT       580        // (mA) RMS current. Multiply by 1.414 for peak current.
  2428.     #define X_CURRENT_HOME  X_CURRENT  // (mA) RMS current for sensorless homing
  2429.     #define X_MICROSTEPS     16        // 0..256
  2430.     #define X_RSENSE          0.11     // Multiplied x1000 for TMC26X
  2431.     #define X_CHAIN_POS      -1        // -1..0: Not chained. 1: MCU MOSI connected. 2: Next in chain, ...
  2432.     //#define X_INTERPOLATE  true      // Enable to override 'INTERPOLATE' for the X axis
  2433.     //#define X_HOLD_MULTIPLIER 0.5    // Enable to override 'HOLD_MULTIPLIER' for the X axis
  2434.   #endif
  2435.  
  2436.   #if AXIS_IS_TMC_CONFIG(X2)
  2437.     #define X2_CURRENT      800
  2438.     #define X2_CURRENT_HOME X2_CURRENT
  2439.     #define X2_MICROSTEPS    X_MICROSTEPS
  2440.     #define X2_RSENSE         0.11
  2441.     #define X2_CHAIN_POS     -1
  2442.     //#define X2_INTERPOLATE true
  2443.     //#define X2_HOLD_MULTIPLIER 0.5
  2444.   #endif
  2445.  
  2446.   #if AXIS_IS_TMC_CONFIG(Y)
  2447.     #define Y_CURRENT       580
  2448.     #define Y_CURRENT_HOME  Y_CURRENT
  2449.     #define Y_MICROSTEPS     16
  2450.     #define Y_RSENSE          0.11
  2451.     #define Y_CHAIN_POS      -1
  2452.     //#define Y_INTERPOLATE  true
  2453.     //#define Y_HOLD_MULTIPLIER 0.5
  2454.   #endif
  2455.  
  2456.   #if AXIS_IS_TMC_CONFIG(Y2)
  2457.     #define Y2_CURRENT      800
  2458.     #define Y2_CURRENT_HOME Y2_CURRENT
  2459.     #define Y2_MICROSTEPS    Y_MICROSTEPS
  2460.     #define Y2_RSENSE         0.11
  2461.     #define Y2_CHAIN_POS     -1
  2462.     //#define Y2_INTERPOLATE true
  2463.     //#define Y2_HOLD_MULTIPLIER 0.5
  2464.   #endif
  2465.  
  2466.   #if AXIS_IS_TMC_CONFIG(Z)
  2467.     #define Z_CURRENT       580
  2468.     #define Z_CURRENT_HOME  Z_CURRENT
  2469.     #define Z_MICROSTEPS     16
  2470.     #define Z_RSENSE          0.11
  2471.     #define Z_CHAIN_POS      -1
  2472.     //#define Z_INTERPOLATE  true
  2473.     //#define Z_HOLD_MULTIPLIER 0.5
  2474.   #endif
  2475.  
  2476.   #if AXIS_IS_TMC_CONFIG(Z2)
  2477.     #define Z2_CURRENT      800
  2478.     #define Z2_CURRENT_HOME Z2_CURRENT
  2479.     #define Z2_MICROSTEPS    Z_MICROSTEPS
  2480.     #define Z2_RSENSE         0.11
  2481.     #define Z2_CHAIN_POS     -1
  2482.     //#define Z2_INTERPOLATE true
  2483.     //#define Z2_HOLD_MULTIPLIER 0.5
  2484.   #endif
  2485.  
  2486.   #if AXIS_IS_TMC_CONFIG(Z3)
  2487.     #define Z3_CURRENT      800
  2488.     #define Z3_CURRENT_HOME Z3_CURRENT
  2489.     #define Z3_MICROSTEPS    Z_MICROSTEPS
  2490.     #define Z3_RSENSE         0.11
  2491.     #define Z3_CHAIN_POS     -1
  2492.     //#define Z3_INTERPOLATE true
  2493.     //#define Z3_HOLD_MULTIPLIER 0.5
  2494.   #endif
  2495.  
  2496.   #if AXIS_IS_TMC_CONFIG(Z4)
  2497.     #define Z4_CURRENT      800
  2498.     #define Z4_CURRENT_HOME Z4_CURRENT
  2499.     #define Z4_MICROSTEPS    Z_MICROSTEPS
  2500.     #define Z4_RSENSE         0.11
  2501.     #define Z4_CHAIN_POS     -1
  2502.     //#define Z4_INTERPOLATE true
  2503.     //#define Z4_HOLD_MULTIPLIER 0.5
  2504.   #endif
  2505.  
  2506.   #if AXIS_IS_TMC_CONFIG(I)
  2507.     #define I_CURRENT      800
  2508.     #define I_CURRENT_HOME I_CURRENT
  2509.     #define I_MICROSTEPS    16
  2510.     #define I_RSENSE         0.11
  2511.     #define I_CHAIN_POS     -1
  2512.     //#define I_INTERPOLATE  true
  2513.     //#define I_HOLD_MULTIPLIER 0.5
  2514.   #endif
  2515.  
  2516.   #if AXIS_IS_TMC_CONFIG(J)
  2517.     #define J_CURRENT      800
  2518.     #define J_CURRENT_HOME J_CURRENT
  2519.     #define J_MICROSTEPS    16
  2520.     #define J_RSENSE         0.11
  2521.     #define J_CHAIN_POS     -1
  2522.     //#define J_INTERPOLATE  true
  2523.     //#define J_HOLD_MULTIPLIER 0.5
  2524.   #endif
  2525.  
  2526.   #if AXIS_IS_TMC_CONFIG(K)
  2527.     #define K_CURRENT      800
  2528.     #define K_CURRENT_HOME K_CURRENT
  2529.     #define K_MICROSTEPS    16
  2530.     #define K_RSENSE         0.11
  2531.     #define K_CHAIN_POS     -1
  2532.     //#define K_INTERPOLATE  true
  2533.     //#define K_HOLD_MULTIPLIER 0.5
  2534.   #endif
  2535.  
  2536.   #if AXIS_IS_TMC_CONFIG(U)
  2537.     #define U_CURRENT      800
  2538.     #define U_CURRENT_HOME U_CURRENT
  2539.     #define U_MICROSTEPS     8
  2540.     #define U_RSENSE         0.11
  2541.     #define U_CHAIN_POS     -1
  2542.     //#define U_INTERPOLATE  true
  2543.     //#define U_HOLD_MULTIPLIER 0.5
  2544.   #endif
  2545.  
  2546.   #if AXIS_IS_TMC_CONFIG(V)
  2547.     #define V_CURRENT      800
  2548.     #define V_CURRENT_HOME V_CURRENT
  2549.     #define V_MICROSTEPS     8
  2550.     #define V_RSENSE         0.11
  2551.     #define V_CHAIN_POS     -1
  2552.     //#define V_INTERPOLATE  true
  2553.     //#define V_HOLD_MULTIPLIER 0.5
  2554.   #endif
  2555.  
  2556.   #if AXIS_IS_TMC_CONFIG(W)
  2557.     #define W_CURRENT      800
  2558.     #define W_CURRENT_HOME W_CURRENT
  2559.     #define W_MICROSTEPS     8
  2560.     #define W_RSENSE         0.11
  2561.     #define W_CHAIN_POS     -1
  2562.     //#define W_INTERPOLATE  true
  2563.     //#define W_HOLD_MULTIPLIER 0.5
  2564.   #endif
  2565.  
  2566.   #if AXIS_IS_TMC_CONFIG(E0)
  2567.     #define E0_CURRENT      650
  2568.     #define E0_MICROSTEPS    16
  2569.     #define E0_RSENSE         0.11
  2570.     #define E0_CHAIN_POS     -1
  2571.     //#define E0_INTERPOLATE true
  2572.     //#define E0_HOLD_MULTIPLIER 0.5
  2573.   #endif
  2574.  
  2575.   #if AXIS_IS_TMC_CONFIG(E1)
  2576.     #define E1_CURRENT      800
  2577.     #define E1_MICROSTEPS   E0_MICROSTEPS
  2578.     #define E1_RSENSE         0.11
  2579.     #define E1_CHAIN_POS     -1
  2580.     //#define E1_INTERPOLATE true
  2581.     //#define E1_HOLD_MULTIPLIER 0.5
  2582.   #endif
  2583.  
  2584.   #if AXIS_IS_TMC_CONFIG(E2)
  2585.     #define E2_CURRENT      800
  2586.     #define E2_MICROSTEPS   E0_MICROSTEPS
  2587.     #define E2_RSENSE         0.11
  2588.     #define E2_CHAIN_POS     -1
  2589.     //#define E2_INTERPOLATE true
  2590.     //#define E2_HOLD_MULTIPLIER 0.5
  2591.   #endif
  2592.  
  2593.   #if AXIS_IS_TMC_CONFIG(E3)
  2594.     #define E3_CURRENT      800
  2595.     #define E3_MICROSTEPS   E0_MICROSTEPS
  2596.     #define E3_RSENSE         0.11
  2597.     #define E3_CHAIN_POS     -1
  2598.     //#define E3_INTERPOLATE true
  2599.     //#define E3_HOLD_MULTIPLIER 0.5
  2600.   #endif
  2601.  
  2602.   #if AXIS_IS_TMC_CONFIG(E4)
  2603.     #define E4_CURRENT      800
  2604.     #define E4_MICROSTEPS   E0_MICROSTEPS
  2605.     #define E4_RSENSE         0.11
  2606.     #define E4_CHAIN_POS     -1
  2607.     //#define E4_INTERPOLATE true
  2608.     //#define E4_HOLD_MULTIPLIER 0.5
  2609.   #endif
  2610.  
  2611.   #if AXIS_IS_TMC_CONFIG(E5)
  2612.     #define E5_CURRENT      800
  2613.     #define E5_MICROSTEPS   E0_MICROSTEPS
  2614.     #define E5_RSENSE         0.11
  2615.     #define E5_CHAIN_POS     -1
  2616.     //#define E5_INTERPOLATE true
  2617.     //#define E5_HOLD_MULTIPLIER 0.5
  2618.   #endif
  2619.  
  2620.   #if AXIS_IS_TMC_CONFIG(E6)
  2621.     #define E6_CURRENT      800
  2622.     #define E6_MICROSTEPS   E0_MICROSTEPS
  2623.     #define E6_RSENSE         0.11
  2624.     #define E6_CHAIN_POS     -1
  2625.     //#define E6_INTERPOLATE true
  2626.     //#define E6_HOLD_MULTIPLIER 0.5
  2627.   #endif
  2628.  
  2629.   #if AXIS_IS_TMC_CONFIG(E7)
  2630.     #define E7_CURRENT      800
  2631.     #define E7_MICROSTEPS   E0_MICROSTEPS
  2632.     #define E7_RSENSE         0.11
  2633.     #define E7_CHAIN_POS     -1
  2634.     //#define E7_INTERPOLATE true
  2635.     //#define E7_HOLD_MULTIPLIER 0.5
  2636.   #endif
  2637.  
  2638.   // @section tmc/spi
  2639.  
  2640.   /**
  2641.    * Override default SPI pins for TMC2130, TMC2160, TMC2660, TMC5130 and TMC5160 drivers here.
  2642.    * The default pins can be found in your board's pins file.
  2643.    */
  2644.   //#define X_CS_PIN          -1
  2645.   //#define Y_CS_PIN          -1
  2646.   //#define Z_CS_PIN          -1
  2647.   //#define X2_CS_PIN         -1
  2648.   //#define Y2_CS_PIN         -1
  2649.   //#define Z2_CS_PIN         -1
  2650.   //#define Z3_CS_PIN         -1
  2651.   //#define Z4_CS_PIN         -1
  2652.   //#define I_CS_PIN          -1
  2653.   //#define J_CS_PIN          -1
  2654.   //#define K_CS_PIN          -1
  2655.   //#define U_CS_PIN          -1
  2656.   //#define V_CS_PIN          -1
  2657.   //#define W_CS_PIN          -1
  2658.   //#define E0_CS_PIN         -1
  2659.   //#define E1_CS_PIN         -1
  2660.   //#define E2_CS_PIN         -1
  2661.   //#define E3_CS_PIN         -1
  2662.   //#define E4_CS_PIN         -1
  2663.   //#define E5_CS_PIN         -1
  2664.   //#define E6_CS_PIN         -1
  2665.   //#define E7_CS_PIN         -1
  2666.  
  2667.   /**
  2668.    * Software option for SPI driven drivers (TMC2130, TMC2160, TMC2660, TMC5130 and TMC5160).
  2669.    * The default SW SPI pins are defined the respective pins files,
  2670.    * but you can override or define them here.
  2671.    */
  2672.   //#define TMC_USE_SW_SPI
  2673.   //#define TMC_SW_MOSI       -1
  2674.   //#define TMC_SW_MISO       -1
  2675.   //#define TMC_SW_SCK        -1
  2676.  
  2677.   // @section tmc/serial
  2678.  
  2679.   /**
  2680.    * Four TMC2209 drivers can use the same HW/SW serial port with hardware configured addresses.
  2681.    * Set the address using jumpers on pins MS1 and MS2.
  2682.    * Address | MS1  | MS2
  2683.    *       0 | LOW  | LOW
  2684.    *       1 | HIGH | LOW
  2685.    *       2 | LOW  | HIGH
  2686.    *       3 | HIGH | HIGH
  2687.    *
  2688.    * Set *_SERIAL_TX_PIN and *_SERIAL_RX_PIN to match for all drivers
  2689.    * on the same serial port, either here or in your board's pins file.
  2690.    */
  2691.   //#define  X_SLAVE_ADDRESS 0
  2692.   //#define  Y_SLAVE_ADDRESS 0
  2693.   //#define  Z_SLAVE_ADDRESS 0
  2694.   //#define X2_SLAVE_ADDRESS 0
  2695.   //#define Y2_SLAVE_ADDRESS 0
  2696.   //#define Z2_SLAVE_ADDRESS 0
  2697.   //#define Z3_SLAVE_ADDRESS 0
  2698.   //#define Z4_SLAVE_ADDRESS 0
  2699.   //#define  I_SLAVE_ADDRESS 0
  2700.   //#define  J_SLAVE_ADDRESS 0
  2701.   //#define  K_SLAVE_ADDRESS 0
  2702.   //#define  U_SLAVE_ADDRESS 0
  2703.   //#define  V_SLAVE_ADDRESS 0
  2704.   //#define  W_SLAVE_ADDRESS 0
  2705.   //#define E0_SLAVE_ADDRESS 0
  2706.   //#define E1_SLAVE_ADDRESS 0
  2707.   //#define E2_SLAVE_ADDRESS 0
  2708.   //#define E3_SLAVE_ADDRESS 0
  2709.   //#define E4_SLAVE_ADDRESS 0
  2710.   //#define E5_SLAVE_ADDRESS 0
  2711.   //#define E6_SLAVE_ADDRESS 0
  2712.   //#define E7_SLAVE_ADDRESS 0
  2713.  
  2714.   // @section tmc/smart
  2715.  
  2716.   /**
  2717.    * Software enable
  2718.    *
  2719.    * Use for drivers that do not use a dedicated enable pin, but rather handle the same
  2720.    * function through a communication line such as SPI or UART.
  2721.    */
  2722.   //#define SOFTWARE_DRIVER_ENABLE
  2723.  
  2724.   // @section tmc/stealthchop
  2725.  
  2726.   /**
  2727.    * TMC2130, TMC2160, TMC2208, TMC2209, TMC5130 and TMC5160 only
  2728.    * Use Trinamic's ultra quiet stepping mode.
  2729.    * When disabled, Marlin will use spreadCycle stepping mode.
  2730.    */
  2731.   #if HAS_STEALTHCHOP
  2732.     #define STEALTHCHOP_XY
  2733.     #define STEALTHCHOP_Z
  2734.     #define STEALTHCHOP_I
  2735.     #define STEALTHCHOP_J
  2736.     #define STEALTHCHOP_K
  2737.     #define STEALTHCHOP_U
  2738.     #define STEALTHCHOP_V
  2739.     #define STEALTHCHOP_W
  2740.     #define STEALTHCHOP_E
  2741.   #endif
  2742.  
  2743.   /**
  2744.    * Optimize spreadCycle chopper parameters by using predefined parameter sets
  2745.    * or with the help of an example included in the library.
  2746.    * Provided parameter sets are
  2747.    * CHOPPER_DEFAULT_12V
  2748.    * CHOPPER_DEFAULT_19V
  2749.    * CHOPPER_DEFAULT_24V
  2750.    * CHOPPER_DEFAULT_36V
  2751.    * CHOPPER_09STEP_24V   // 0.9 degree steppers (24V)
  2752.    * CHOPPER_PRUSAMK3_24V // Imported parameters from the official Průša firmware for MK3 (24V)
  2753.    * CHOPPER_MARLIN_119   // Old defaults from Marlin v1.1.9
  2754.    *
  2755.    * Define your own with:
  2756.    * { <off_time[1..15]>, <hysteresis_end[-3..12]>, hysteresis_start[1..8] }
  2757.    */
  2758.   #define CHOPPER_TIMING CHOPPER_DEFAULT_24V        // All axes (override below)
  2759.   //#define CHOPPER_TIMING_X  CHOPPER_TIMING        // For X Axes (override below)
  2760.   //#define CHOPPER_TIMING_X2 CHOPPER_TIMING_X
  2761.   //#define CHOPPER_TIMING_Y  CHOPPER_TIMING        // For Y Axes (override below)
  2762.   //#define CHOPPER_TIMING_Y2 CHOPPER_TIMING_Y
  2763.   //#define CHOPPER_TIMING_Z  CHOPPER_TIMING        // For Z Axes (override below)
  2764.   //#define CHOPPER_TIMING_Z2 CHOPPER_TIMING_Z
  2765.   //#define CHOPPER_TIMING_Z3 CHOPPER_TIMING_Z
  2766.   //#define CHOPPER_TIMING_Z4 CHOPPER_TIMING_Z
  2767.   //#define CHOPPER_TIMING_I  CHOPPER_TIMING        // For I Axis
  2768.   //#define CHOPPER_TIMING_J  CHOPPER_TIMING        // For J Axis
  2769.   //#define CHOPPER_TIMING_K  CHOPPER_TIMING        // For K Axis
  2770.   //#define CHOPPER_TIMING_U  CHOPPER_TIMING        // For U Axis
  2771.   //#define CHOPPER_TIMING_V  CHOPPER_TIMING        // For V Axis
  2772.   //#define CHOPPER_TIMING_W  CHOPPER_TIMING        // For W Axis
  2773.   //#define CHOPPER_TIMING_E  CHOPPER_TIMING        // For Extruders (override below)
  2774.   //#define CHOPPER_TIMING_E1 CHOPPER_TIMING_E
  2775.   //#define CHOPPER_TIMING_E2 CHOPPER_TIMING_E
  2776.   //#define CHOPPER_TIMING_E3 CHOPPER_TIMING_E
  2777.   //#define CHOPPER_TIMING_E4 CHOPPER_TIMING_E
  2778.   //#define CHOPPER_TIMING_E5 CHOPPER_TIMING_E
  2779.   //#define CHOPPER_TIMING_E6 CHOPPER_TIMING_E
  2780.   //#define CHOPPER_TIMING_E7 CHOPPER_TIMING_E
  2781.  
  2782.   // @section tmc/status
  2783.  
  2784.   /**
  2785.    * Monitor Trinamic drivers
  2786.    * for error conditions like overtemperature and short to ground.
  2787.    * To manage over-temp Marlin can decrease the driver current until the error condition clears.
  2788.    * Other detected conditions can be used to stop the current print.
  2789.    * Relevant G-codes:
  2790.    * M906 - Set or get motor current in milliamps using axis codes X, Y, Z, E. Report values if no axis codes given.
  2791.    * M911 - Report stepper driver overtemperature pre-warn condition.
  2792.    * M912 - Clear stepper driver overtemperature pre-warn condition flag.
  2793.    * M122 - Report driver parameters (Requires TMC_DEBUG)
  2794.    */
  2795.   //#define MONITOR_DRIVER_STATUS
  2796.  
  2797.   #if ENABLED(MONITOR_DRIVER_STATUS)
  2798.     #define CURRENT_STEP_DOWN     50  // [mA]
  2799.     #define REPORT_CURRENT_CHANGE
  2800.     #define STOP_ON_ERROR
  2801.   #endif
  2802.  
  2803.   // @section tmc/hybrid
  2804.  
  2805.   /**
  2806.    * TMC2130, TMC2160, TMC2208, TMC2209, TMC5130 and TMC5160 only
  2807.    * The driver will switch to spreadCycle when stepper speed is over HYBRID_THRESHOLD.
  2808.    * This mode allows for faster movements at the expense of higher noise levels.
  2809.    * STEALTHCHOP_(XY|Z|E) must be enabled to use HYBRID_THRESHOLD.
  2810.    * M913 X/Y/Z/E to live tune the setting
  2811.    */
  2812.   //#define HYBRID_THRESHOLD
  2813.  
  2814.   #define X_HYBRID_THRESHOLD     100  // [mm/s]
  2815.   #define X2_HYBRID_THRESHOLD    100
  2816.   #define Y_HYBRID_THRESHOLD     100
  2817.   #define Y2_HYBRID_THRESHOLD    100
  2818.   #define Z_HYBRID_THRESHOLD       3
  2819.   #define Z2_HYBRID_THRESHOLD      3
  2820.   #define Z3_HYBRID_THRESHOLD      3
  2821.   #define Z4_HYBRID_THRESHOLD      3
  2822.   #define I_HYBRID_THRESHOLD       3  // [linear=mm/s, rotational=°/s]
  2823.   #define J_HYBRID_THRESHOLD       3  // [linear=mm/s, rotational=°/s]
  2824.   #define K_HYBRID_THRESHOLD       3  // [linear=mm/s, rotational=°/s]
  2825.   #define U_HYBRID_THRESHOLD       3  // [mm/s]
  2826.   #define V_HYBRID_THRESHOLD       3
  2827.   #define W_HYBRID_THRESHOLD       3
  2828.   #define E0_HYBRID_THRESHOLD     30
  2829.   #define E1_HYBRID_THRESHOLD     30
  2830.   #define E2_HYBRID_THRESHOLD     30
  2831.   #define E3_HYBRID_THRESHOLD     30
  2832.   #define E4_HYBRID_THRESHOLD     30
  2833.   #define E5_HYBRID_THRESHOLD     30
  2834.   #define E6_HYBRID_THRESHOLD     30
  2835.   #define E7_HYBRID_THRESHOLD     30
  2836.  
  2837.   /**
  2838.    * Use StallGuard to home / probe X, Y, Z.
  2839.    *
  2840.    * TMC2130, TMC2160, TMC2209, TMC2660, TMC5130, and TMC5160 only
  2841.    * Connect the stepper driver's DIAG1 pin to the X/Y endstop pin.
  2842.    * X, Y, and Z homing will always be done in spreadCycle mode.
  2843.    *
  2844.    * X/Y/Z_STALL_SENSITIVITY is the default stall threshold.
  2845.    * Use M914 X Y Z to set the stall threshold at runtime:
  2846.    *
  2847.    *  Sensitivity   TMC2209   Others
  2848.    *    HIGHEST       255      -64    (Too sensitive => False positive)
  2849.    *    LOWEST         0        63    (Too insensitive => No trigger)
  2850.    *
  2851.    * It is recommended to set HOMING_BUMP_MM to { 0, 0, 0 }.
  2852.    *
  2853.    * SPI_ENDSTOPS  *** Beta feature! *** TMC2130/TMC5160 Only ***
  2854.    * Poll the driver through SPI to determine load when homing.
  2855.    * Removes the need for a wire from DIAG1 to an endstop pin.
  2856.    *
  2857.    * IMPROVE_HOMING_RELIABILITY tunes acceleration and jerk when
  2858.    * homing and adds a guard period for endstop triggering.
  2859.    *
  2860.    * Comment *_STALL_SENSITIVITY to disable sensorless homing for that axis.
  2861.    * @section tmc/stallguard
  2862.    */
  2863.   //#define SENSORLESS_HOMING // StallGuard capable drivers only
  2864.  
  2865.   #if EITHER(SENSORLESS_HOMING, SENSORLESS_PROBING)
  2866.     // TMC2209: 0...255. TMC2130: -64...63
  2867.     #define X_STALL_SENSITIVITY  8
  2868.     #define X2_STALL_SENSITIVITY X_STALL_SENSITIVITY
  2869.     #define Y_STALL_SENSITIVITY  8
  2870.     #define Y2_STALL_SENSITIVITY Y_STALL_SENSITIVITY
  2871.     //#define Z_STALL_SENSITIVITY  8
  2872.     //#define Z2_STALL_SENSITIVITY Z_STALL_SENSITIVITY
  2873.     //#define Z3_STALL_SENSITIVITY Z_STALL_SENSITIVITY
  2874.     //#define Z4_STALL_SENSITIVITY Z_STALL_SENSITIVITY
  2875.     //#define I_STALL_SENSITIVITY  8
  2876.     //#define J_STALL_SENSITIVITY  8
  2877.     //#define K_STALL_SENSITIVITY  8
  2878.     //#define U_STALL_SENSITIVITY  8
  2879.     //#define V_STALL_SENSITIVITY  8
  2880.     //#define W_STALL_SENSITIVITY  8
  2881.     //#define SPI_ENDSTOPS              // TMC2130 only
  2882.     //#define IMPROVE_HOMING_RELIABILITY
  2883.   #endif
  2884.  
  2885.   // @section tmc/config
  2886.  
  2887.   /**
  2888.    * TMC Homing stepper phase.
  2889.    *
  2890.    * Improve homing repeatability by homing to stepper coil's nearest absolute
  2891.    * phase position. Trinamic drivers use a stepper phase table with 1024 values
  2892.    * spanning 4 full steps with 256 positions each (ergo, 1024 positions).
  2893.    * Full step positions (128, 384, 640, 896) have the highest holding torque.
  2894.    *
  2895.    * Values from 0..1023, -1 to disable homing phase for that axis.
  2896.    */
  2897.    //#define TMC_HOME_PHASE { 896, 896, 896 }
  2898.  
  2899.   /**
  2900.    * Beta feature!
  2901.    * Create a 50/50 square wave step pulse optimal for stepper drivers.
  2902.    */
  2903.   //#define SQUARE_WAVE_STEPPING
  2904.  
  2905.   /**
  2906.    * Enable M122 debugging command for TMC stepper drivers.
  2907.    * M122 S0/1 will enable continuous reporting.
  2908.    */
  2909.   //#define TMC_DEBUG
  2910.  
  2911.   /**
  2912.    * You can set your own advanced settings by filling in predefined functions.
  2913.    * A list of available functions can be found on the library github page
  2914.    * https://github.com/teemuatlut/TMCStepper
  2915.    *
  2916.    * Example:
  2917.    * #define TMC_ADV() { \
  2918.    *   stepperX.diag0_otpw(1); \
  2919.    *   stepperY.intpol(0); \
  2920.    * }
  2921.    */
  2922.   #define TMC_ADV() {  }
  2923.  
  2924. #endif // HAS_TRINAMIC_CONFIG || HAS_TMC26X
  2925.  
  2926. // @section i2cbus
  2927.  
  2928. //
  2929. // I2C Master ID for LPC176x LCD and Digital Current control
  2930. // Does not apply to other peripherals based on the Wire library.
  2931. //
  2932. //#define I2C_MASTER_ID  1  // Set a value from 0 to 2
  2933.  
  2934. /**
  2935.  * TWI/I2C BUS
  2936.  *
  2937.  * This feature is an EXPERIMENTAL feature so it shall not be used on production
  2938.  * machines. Enabling this will allow you to send and receive I2C data from slave
  2939.  * devices on the bus.
  2940.  *
  2941.  * ; Example #1
  2942.  * ; This macro send the string "Marlin" to the slave device with address 0x63 (99)
  2943.  * ; It uses multiple M260 commands with one B&lt;base 10&gt; arg
  2944.  * M260 A99  ; Target slave address
  2945.  * M260 B77  ; M
  2946.  * M260 B97  ; a
  2947.  * M260 B114 ; r
  2948.  * M260 B108 ; l
  2949.  * M260 B105 ; i
  2950.  * M260 B110 ; n
  2951.  * M260 S1   ; Send the current buffer
  2952.  *
  2953.  * ; Example #2
  2954.  * ; Request 6 bytes from slave device with address 0x63 (99)
  2955.  * M261 A99 B5
  2956.  *
  2957.  * ; Example #3
  2958.  * ; Example serial output of a M261 request
  2959.  * echo:i2c-reply: from:99 bytes:5 data:hello
  2960.  */
  2961.  
  2962. //#define EXPERIMENTAL_I2CBUS
  2963. #if ENABLED(EXPERIMENTAL_I2CBUS)
  2964.   #define I2C_SLAVE_ADDRESS  0  // Set a value from 8 to 127 to act as a slave
  2965. #endif
  2966.  
  2967. // @section photo
  2968.  
  2969. /**
  2970.  * Photo G-code
  2971.  * Add the M240 G-code to take a photo.
  2972.  * The photo can be triggered by a digital pin or a physical movement.
  2973.  */
  2974. //#define PHOTO_GCODE
  2975. #if ENABLED(PHOTO_GCODE)
  2976.   // A position to move to (and raise Z) before taking the photo
  2977.   //#define PHOTO_POSITION { X_MAX_POS - 5, Y_MAX_POS, 0 }  // { xpos, ypos, zraise } (M240 X Y Z)
  2978.   //#define PHOTO_DELAY_MS   100                            // (ms) Duration to pause before moving back (M240 P)
  2979.   //#define PHOTO_RETRACT_MM   6.5                          // (mm) E retract/recover for the photo move (M240 R S)
  2980.  
  2981.   // Canon RC-1 or homebrew digital camera trigger
  2982.   // Data from: https://www.doc-diy.net/photo/rc-1_hacked/
  2983.   //#define PHOTOGRAPH_PIN 23
  2984.  
  2985.   // Canon Hack Development Kit
  2986.   // https://captain-slow.dk/2014/03/09/3d-printing-timelapses/
  2987.   //#define CHDK_PIN        4
  2988.  
  2989.   // Optional second move with delay to trigger the camera shutter
  2990.   //#define PHOTO_SWITCH_POSITION { X_MAX_POS, Y_MAX_POS }  // { xpos, ypos } (M240 I J)
  2991.  
  2992.   // Duration to hold the switch or keep CHDK_PIN high
  2993.   //#define PHOTO_SWITCH_MS   50 // (ms) (M240 D)
  2994.  
  2995.   /**
  2996.    * PHOTO_PULSES_US may need adjustment depending on board and camera model.
  2997.    * Pin must be running at 48.4kHz.
  2998.    * Be sure to use a PHOTOGRAPH_PIN which can rise and fall quick enough.
  2999.    * (e.g., MKS SBase temp sensor pin was too slow, so used P1.23 on J8.)
  3000.    *
  3001.    *  Example pulse data for Nikon: https://bit.ly/2FKD0Aq
  3002.    *                     IR Wiring: https://git.io/JvJf7
  3003.    */
  3004.   //#define PHOTO_PULSES_US { 2000, 27850, 400, 1580, 400, 3580, 400 }  // (µs) Durations for each 48.4kHz oscillation
  3005.   #ifdef PHOTO_PULSES_US
  3006.     #define PHOTO_PULSE_DELAY_US 13 // (µs) Approximate duration of each HIGH and LOW pulse in the oscillation
  3007.   #endif
  3008. #endif
  3009.  
  3010. // @section cnc
  3011.  
  3012. /**
  3013.  * Spindle & Laser control
  3014.  *
  3015.  * Add the M3, M4, and M5 commands to turn the spindle/laser on and off, and
  3016.  * to set spindle speed, spindle direction, and laser power.
  3017.  *
  3018.  * SuperPid is a router/spindle speed controller used in the CNC milling community.
  3019.  * Marlin can be used to turn the spindle on and off. It can also be used to set
  3020.  * the spindle speed from 5,000 to 30,000 RPM.
  3021.  *
  3022.  * You'll need to select a pin for the ON/OFF function and optionally choose a 0-5V
  3023.  * hardware PWM pin for the speed control and a pin for the rotation direction.
  3024.  *
  3025.  * See https://marlinfw.org/docs/configuration/2.0.9/laser_spindle.html for more config details.
  3026.  */
  3027. //#define SPINDLE_FEATURE
  3028. //#define LASER_FEATURE
  3029. #if EITHER(SPINDLE_FEATURE, LASER_FEATURE)
  3030.   #define SPINDLE_LASER_ACTIVE_STATE    LOW    // Set to "HIGH" if SPINDLE_LASER_ENA_PIN is active HIGH
  3031.  
  3032.   #define SPINDLE_LASER_USE_PWM                // Enable if your controller supports setting the speed/power
  3033.   #if ENABLED(SPINDLE_LASER_USE_PWM)
  3034.     #define SPINDLE_LASER_PWM_INVERT    false  // Set to "true" if the speed/power goes up when you want it to go slower
  3035.     #define SPINDLE_LASER_FREQUENCY     2500   // (Hz) Spindle/laser frequency (only on supported HALs: AVR, ESP32, and LPC)
  3036.                                                // ESP32: If SPINDLE_LASER_PWM_PIN is onboard then <=78125Hz. For I2S expander
  3037.                                                //  the frequency determines the PWM resolution. 2500Hz = 0-100, 977Hz = 0-255, ...
  3038.                                                //  (250000 / SPINDLE_LASER_FREQUENCY) = max value.
  3039.   #endif
  3040.  
  3041.   //#define AIR_EVACUATION                     // Cutter Vacuum / Laser Blower motor control with G-codes M10-M11
  3042.   #if ENABLED(AIR_EVACUATION)
  3043.     #define AIR_EVACUATION_ACTIVE       LOW    // Set to "HIGH" if the on/off function is active HIGH
  3044.     //#define AIR_EVACUATION_PIN        42     // Override the default Cutter Vacuum or Laser Blower pin
  3045.   #endif
  3046.  
  3047.   //#define AIR_ASSIST                         // Air Assist control with G-codes M8-M9
  3048.   #if ENABLED(AIR_ASSIST)
  3049.     #define AIR_ASSIST_ACTIVE           LOW    // Active state on air assist pin
  3050.     //#define AIR_ASSIST_PIN            44     // Override the default Air Assist pin
  3051.   #endif
  3052.  
  3053.   //#define SPINDLE_SERVO                      // A servo converting an angle to spindle power
  3054.   #ifdef SPINDLE_SERVO
  3055.     #define SPINDLE_SERVO_NR   0               // Index of servo used for spindle control
  3056.     #define SPINDLE_SERVO_MIN 10               // Minimum angle for servo spindle
  3057.   #endif
  3058.  
  3059.   /**
  3060.    * Speed / Power can be set ('M3 S') and displayed in terms of:
  3061.    *  - PWM255  (S0 - S255)
  3062.    *  - PERCENT (S0 - S100)
  3063.    *  - RPM     (S0 - S50000)  Best for use with a spindle
  3064.    *  - SERVO   (S0 - S180)
  3065.    */
  3066.   #define CUTTER_POWER_UNIT PWM255
  3067.  
  3068.   /**
  3069.    * Relative Cutter Power
  3070.    * Normally, 'M3 O<power>' sets
  3071.    * OCR power is relative to the range SPEED_POWER_MIN...SPEED_POWER_MAX.
  3072.    * so input powers of 0...255 correspond to SPEED_POWER_MIN...SPEED_POWER_MAX
  3073.    * instead of normal range (0 to SPEED_POWER_MAX).
  3074.    * Best used with (e.g.) SuperPID router controller: S0 = 5,000 RPM and S255 = 30,000 RPM
  3075.    */
  3076.   //#define CUTTER_POWER_RELATIVE              // Set speed proportional to [SPEED_POWER_MIN...SPEED_POWER_MAX]
  3077.  
  3078.   #if ENABLED(SPINDLE_FEATURE)
  3079.     //#define SPINDLE_CHANGE_DIR               // Enable if your spindle controller can change spindle direction
  3080.     #define SPINDLE_CHANGE_DIR_STOP            // Enable if the spindle should stop before changing spin direction
  3081.     #define SPINDLE_INVERT_DIR          false  // Set to "true" if the spin direction is reversed
  3082.  
  3083.     #define SPINDLE_LASER_POWERUP_DELAY   5000 // (ms) Delay to allow the spindle/laser to come up to speed/power
  3084.     #define SPINDLE_LASER_POWERDOWN_DELAY 5000 // (ms) Delay to allow the spindle to stop
  3085.  
  3086.     /**
  3087.      * M3/M4 Power Equation
  3088.      *
  3089.      * Each tool uses different value ranges for speed / power control.
  3090.      * These parameters are used to convert between tool power units and PWM.
  3091.      *
  3092.      * Speed/Power = (PWMDC / 255 * 100 - SPEED_POWER_INTERCEPT) / SPEED_POWER_SLOPE
  3093.      * PWMDC = (spdpwr - SPEED_POWER_MIN) / (SPEED_POWER_MAX - SPEED_POWER_MIN) / SPEED_POWER_SLOPE
  3094.      */
  3095.     #if ENABLED(SPINDLE_LASER_USE_PWM)
  3096.       #define SPEED_POWER_INTERCEPT       0    // (%) 0-100 i.e., Minimum power percentage
  3097.       #define SPEED_POWER_MIN          5000    // (RPM)
  3098.       #define SPEED_POWER_MAX         30000    // (RPM) SuperPID router controller 0 - 30,000 RPM
  3099.       #define SPEED_POWER_STARTUP     25000    // (RPM) M3/M4 speed/power default (with no arguments)
  3100.     #endif
  3101.  
  3102.   #else
  3103.  
  3104.     #if ENABLED(SPINDLE_LASER_USE_PWM)
  3105.       #define SPEED_POWER_INTERCEPT       0    // (%) 0-100 i.e., Minimum power percentage
  3106.       #define SPEED_POWER_MIN             0    // (%) 0-100
  3107.       #define SPEED_POWER_MAX           100    // (%) 0-100
  3108.       #define SPEED_POWER_STARTUP        80    // (%) M3/M4 speed/power default (with no arguments)
  3109.     #endif
  3110.  
  3111.     // Define the minimum and maximum test pulse time values for a laser test fire function
  3112.     #define LASER_TEST_PULSE_MIN           1   // (ms) Used with Laser Control Menu
  3113.     #define LASER_TEST_PULSE_MAX         999   // (ms) Caution: Menu may not show more than 3 characters
  3114.  
  3115.     #define SPINDLE_LASER_POWERUP_DELAY   50   // (ms) Delay to allow the spindle/laser to come up to speed/power
  3116.     #define SPINDLE_LASER_POWERDOWN_DELAY 50   // (ms) Delay to allow the spindle to stop
  3117.  
  3118.    /**
  3119.     * Laser Safety Timeout
  3120.     *
  3121.     * The laser should be turned off when there is no movement for a period of time.
  3122.     * Consider material flammability, cut rate, and G-code order when setting this
  3123.     * value. Too low and it could turn off during a very slow move; too high and
  3124.     * the material could ignite.
  3125.     */
  3126.     #define LASER_SAFETY_TIMEOUT_MS     1000   // (ms)
  3127.  
  3128.     /**
  3129.      * Any M3 or G1/2/3/5 command with the 'I' parameter enables continuous inline power mode.
  3130.      *
  3131.      * e.g., 'M3 I' enables continuous inline power which is processed by the planner.
  3132.      * Power is stored in move blocks and applied when blocks are processed by the Stepper ISR.
  3133.      *
  3134.      * 'M4 I' sets dynamic mode which uses the current feedrate to calculate a laser power OCR value.
  3135.      *
  3136.      * Any move in dynamic mode will use the current feedrate to calculate the laser power.
  3137.      * Feed rates are set by the F parameter of a move command e.g. G1 X0 Y10 F6000
  3138.      * Laser power would be calculated by bit shifting off 8 LSB's. In binary this is div 256.
  3139.      * The calculation gives us ocr values from 0 to 255, values over F65535 will be set as 255 .
  3140.      * More refined power control such as compesation for accell/decell will be addressed in future releases.
  3141.      *
  3142.      * M5 I clears inline mode and set power to 0, M5 sets the power output to 0 but leaves inline mode on.
  3143.      */
  3144.  
  3145.     /**
  3146.      * Enable M3 commands for laser mode inline power planner syncing.
  3147.      * This feature enables any M3 S-value to be injected into the block buffers while in
  3148.      * CUTTER_MODE_CONTINUOUS. The option allows M3 laser power to be commited without waiting
  3149.      * for a planner syncronization
  3150.      */
  3151.     //#define LASER_POWER_SYNC
  3152.  
  3153.     /**
  3154.      * Scale the laser's power in proportion to the movement rate.
  3155.      *
  3156.      * - Sets the entry power proportional to the entry speed over the nominal speed.
  3157.      * - Ramps the power up every N steps to approximate the speed trapezoid.
  3158.      * - Due to the limited power resolution this is only approximate.
  3159.      */
  3160.     //#define LASER_POWER_TRAP
  3161.  
  3162.     //
  3163.     // Laser I2C Ammeter (High precision INA226 low/high side module)
  3164.     //
  3165.     //#define I2C_AMMETER
  3166.     #if ENABLED(I2C_AMMETER)
  3167.       #define I2C_AMMETER_IMAX            0.1    // (Amps) Calibration value for the expected current range
  3168.       #define I2C_AMMETER_SHUNT_RESISTOR  0.1    // (Ohms) Calibration shunt resistor value
  3169.     #endif
  3170.  
  3171.     //
  3172.     // Laser Coolant Flow Meter
  3173.     //
  3174.     //#define LASER_COOLANT_FLOW_METER
  3175.     #if ENABLED(LASER_COOLANT_FLOW_METER)
  3176.       #define FLOWMETER_PIN         20  // Requires an external interrupt-enabled pin (e.g., RAMPS 2,3,18,19,20,21)
  3177.       #define FLOWMETER_PPL       5880  // (pulses/liter) Flow meter pulses-per-liter on the input pin
  3178.       #define FLOWMETER_INTERVAL  1000  // (ms) Flow rate calculation interval in milliseconds
  3179.       #define FLOWMETER_SAFETY          // Prevent running the laser without the minimum flow rate set below
  3180.       #if ENABLED(FLOWMETER_SAFETY)
  3181.         #define FLOWMETER_MIN_LITERS_PER_MINUTE 1.5 // (liters/min) Minimum flow required when enabled
  3182.       #endif
  3183.     #endif
  3184.  
  3185.   #endif
  3186. #endif // SPINDLE_FEATURE || LASER_FEATURE
  3187.  
  3188. /**
  3189.  * Synchronous Laser Control with M106/M107
  3190.  *
  3191.  * Marlin normally applies M106/M107 fan speeds at a time "soon after" processing
  3192.  * a planner block. This is too inaccurate for a PWM/TTL laser attached to the fan
  3193.  * header (as with some add-on laser kits). Enable this option to set fan/laser
  3194.  * speeds with much more exact timing for improved print fidelity.
  3195.  *
  3196.  * NOTE: This option sacrifices some cooling fan speed options.
  3197.  */
  3198. //#define LASER_SYNCHRONOUS_M106_M107
  3199.  
  3200. /**
  3201.  * Coolant Control
  3202.  *
  3203.  * Add the M7, M8, and M9 commands to turn mist or flood coolant on and off.
  3204.  *
  3205.  * Note: COOLANT_MIST_PIN and/or COOLANT_FLOOD_PIN must also be defined.
  3206.  */
  3207. //#define COOLANT_CONTROL
  3208. #if ENABLED(COOLANT_CONTROL)
  3209.   #define COOLANT_MIST                // Enable if mist coolant is present
  3210.   #define COOLANT_FLOOD               // Enable if flood coolant is present
  3211.   #define COOLANT_MIST_INVERT  false  // Set "true" if the on/off function is reversed
  3212.   #define COOLANT_FLOOD_INVERT false  // Set "true" if the on/off function is reversed
  3213. #endif
  3214.  
  3215. // @section filament width
  3216.  
  3217. /**
  3218.  * Filament Width Sensor
  3219.  *
  3220.  * Measures the filament width in real-time and adjusts
  3221.  * flow rate to compensate for any irregularities.
  3222.  *
  3223.  * Also allows the measured filament diameter to set the
  3224.  * extrusion rate, so the slicer only has to specify the
  3225.  * volume.
  3226.  *
  3227.  * Only a single extruder is supported at this time.
  3228.  *
  3229.  *  34 RAMPS_14    : Analog input 5 on the AUX2 connector
  3230.  *  81 PRINTRBOARD : Analog input 2 on the Exp1 connector (version B,C,D,E)
  3231.  * 301 RAMBO       : Analog input 3
  3232.  *
  3233.  * Note: May require analog pins to be defined for other boards.
  3234.  */
  3235. //#define FILAMENT_WIDTH_SENSOR
  3236.  
  3237. #if ENABLED(FILAMENT_WIDTH_SENSOR)
  3238.   #define FILAMENT_SENSOR_EXTRUDER_NUM 0    // Index of the extruder that has the filament sensor. :[0,1,2,3,4]
  3239.   #define MEASUREMENT_DELAY_CM        14    // (cm) The distance from the filament sensor to the melting chamber
  3240.  
  3241.   #define FILWIDTH_ERROR_MARGIN        1.0  // (mm) If a measurement differs too much from nominal width ignore it
  3242.   #define MAX_MEASUREMENT_DELAY       20    // (bytes) Buffer size for stored measurements (1 byte per cm). Must be larger than MEASUREMENT_DELAY_CM.
  3243.  
  3244.   #define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA // Set measured to nominal initially
  3245.  
  3246.   // Display filament width on the LCD status line. Status messages will expire after 5 seconds.
  3247.   //#define FILAMENT_LCD_DISPLAY
  3248. #endif
  3249.  
  3250. // @section power
  3251.  
  3252. /**
  3253.  * Power Monitor
  3254.  * Monitor voltage (V) and/or current (A), and -when possible- power (W)
  3255.  *
  3256.  * Read and configure with M430
  3257.  *
  3258.  * The current sensor feeds DC voltage (relative to the measured current) to an analog pin
  3259.  * The voltage sensor feeds DC voltage (relative to the measured voltage) to an analog pin
  3260.  */
  3261. //#define POWER_MONITOR_CURRENT   // Monitor the system current
  3262. //#define POWER_MONITOR_VOLTAGE   // Monitor the system voltage
  3263.  
  3264. #if ENABLED(POWER_MONITOR_CURRENT)
  3265.   #define POWER_MONITOR_VOLTS_PER_AMP    0.05000  // Input voltage to the MCU analog pin per amp  - DO NOT apply more than ADC_VREF!
  3266.   #define POWER_MONITOR_CURRENT_OFFSET   0        // Offset (in amps) applied to the calculated current
  3267.   #define POWER_MONITOR_FIXED_VOLTAGE   13.6      // Voltage for a current sensor with no voltage sensor (for power display)
  3268. #endif
  3269.  
  3270. #if ENABLED(POWER_MONITOR_VOLTAGE)
  3271.   #define POWER_MONITOR_VOLTS_PER_VOLT  0.077933  // Input voltage to the MCU analog pin per volt - DO NOT apply more than ADC_VREF!
  3272.   #define POWER_MONITOR_VOLTAGE_OFFSET  0         // Offset (in volts) applied to the calculated voltage
  3273. #endif
  3274.  
  3275. // @section safety
  3276.  
  3277. /**
  3278.  * Stepper Driver Anti-SNAFU Protection
  3279.  *
  3280.  * If the SAFE_POWER_PIN is defined for your board, Marlin will check
  3281.  * that stepper drivers are properly plugged in before applying power.
  3282.  * Disable protection if your stepper drivers don't support the feature.
  3283.  */
  3284. //#define DISABLE_DRIVER_SAFE_POWER_PROTECT
  3285.  
  3286. // @section cnc
  3287.  
  3288. /**
  3289.  * CNC Coordinate Systems
  3290.  *
  3291.  * Enables G53 and G54-G59.3 commands to select coordinate systems
  3292.  * and G92.1 to reset the workspace to native machine space.
  3293.  */
  3294. //#define CNC_COORDINATE_SYSTEMS
  3295.  
  3296. // @section reporting
  3297.  
  3298. /**
  3299.  * Auto-report fan speed with M123 S<seconds>
  3300.  * Requires fans with tachometer pins
  3301.  */
  3302. //#define AUTO_REPORT_FANS
  3303.  
  3304. /**
  3305.  * Auto-report temperatures with M155 S<seconds>
  3306.  */
  3307. #define AUTO_REPORT_TEMPERATURES
  3308. #if ENABLED(AUTO_REPORT_TEMPERATURES) && TEMP_SENSOR_REDUNDANT
  3309.   //#define AUTO_REPORT_REDUNDANT // Include the "R" sensor in the auto-report
  3310. #endif
  3311.  
  3312. /**
  3313.  * Auto-report position with M154 S<seconds>
  3314.  */
  3315. //#define AUTO_REPORT_POSITION
  3316.  
  3317. /**
  3318.  * Include capabilities in M115 output
  3319.  */
  3320. #define EXTENDED_CAPABILITIES_REPORT
  3321. #if ENABLED(EXTENDED_CAPABILITIES_REPORT)
  3322.   //#define M115_GEOMETRY_REPORT
  3323. #endif
  3324.  
  3325. // @section security
  3326.  
  3327. /**
  3328.  * Expected Printer Check
  3329.  * Add the M16 G-code to compare a string to the MACHINE_NAME.
  3330.  * M16 with a non-matching string causes the printer to halt.
  3331.  */
  3332. //#define EXPECTED_PRINTER_CHECK
  3333.  
  3334. // @section volumetrics
  3335.  
  3336. /**
  3337.  * Disable all Volumetric extrusion options
  3338.  */
  3339. //#define NO_VOLUMETRICS
  3340.  
  3341. #if DISABLED(NO_VOLUMETRICS)
  3342.   /**
  3343.    * Volumetric extrusion default state
  3344.    * Activate to make volumetric extrusion the default method,
  3345.    * with DEFAULT_NOMINAL_FILAMENT_DIA as the default diameter.
  3346.    *
  3347.    * M200 D0 to disable, M200 Dn to set a new diameter (and enable volumetric).
  3348.    * M200 S0/S1 to disable/enable volumetric extrusion.
  3349.    */
  3350.   //#define VOLUMETRIC_DEFAULT_ON
  3351.  
  3352.   //#define VOLUMETRIC_EXTRUDER_LIMIT
  3353.   #if ENABLED(VOLUMETRIC_EXTRUDER_LIMIT)
  3354.     /**
  3355.      * Default volumetric extrusion limit in cubic mm per second (mm^3/sec).
  3356.      * This factory setting applies to all extruders.
  3357.      * Use 'M200 [T<extruder>] L<limit>' to override and 'M502' to reset.
  3358.      * A non-zero value activates Volume-based Extrusion Limiting.
  3359.      */
  3360.     #define DEFAULT_VOLUMETRIC_EXTRUDER_LIMIT 0.00      // (mm^3/sec)
  3361.   #endif
  3362. #endif
  3363.  
  3364. // @section reporting
  3365.  
  3366. // Extra options for the M114 "Current Position" report
  3367. //#define M114_DETAIL         // Use 'M114` for details to check planner calculations
  3368. //#define M114_REALTIME       // Real current position based on forward kinematics
  3369. //#define M114_LEGACY         // M114 used to synchronize on every call. Enable if needed.
  3370.  
  3371. //#define REPORT_FAN_CHANGE   // Report the new fan speed when changed by M106 (and others)
  3372.  
  3373. // @section gcode
  3374.  
  3375. /**
  3376.  * Spend 28 bytes of SRAM to optimize the G-code parser
  3377.  */
  3378. #define FASTER_GCODE_PARSER
  3379.  
  3380. #if ENABLED(FASTER_GCODE_PARSER)
  3381.   //#define GCODE_QUOTED_STRINGS  // Support for quoted string parameters
  3382. #endif
  3383.  
  3384. // Support for MeatPack G-code compression (https://github.com/scottmudge/OctoPrint-MeatPack)
  3385. //#define MEATPACK_ON_SERIAL_PORT_1
  3386. //#define MEATPACK_ON_SERIAL_PORT_2
  3387.  
  3388. //#define GCODE_CASE_INSENSITIVE  // Accept G-code sent to the firmware in lowercase
  3389.  
  3390. //#define REPETIER_GCODE_M360     // Add commands originally from Repetier FW
  3391.  
  3392. /**
  3393.  * Enable this option for a leaner build of Marlin that removes all
  3394.  * workspace offsets, simplifying coordinate transformations, leveling, etc.
  3395.  *
  3396.  *  - M206 and M428 are disabled.
  3397.  *  - G92 will revert to its behavior from Marlin 1.0.
  3398.  */
  3399. //#define NO_WORKSPACE_OFFSETS
  3400.  
  3401. /**
  3402.  * CNC G-code options
  3403.  * Support CNC-style G-code dialects used by laser cutters, drawing machine cams, etc.
  3404.  * Note that G0 feedrates should be used with care for 3D printing (if used at all).
  3405.  * High feedrates may cause ringing and harm print quality.
  3406.  */
  3407. //#define PAREN_COMMENTS      // Support for parentheses-delimited comments
  3408. //#define GCODE_MOTION_MODES  // Remember the motion mode (G0 G1 G2 G3 G5 G38.X) and apply for X Y Z E F, etc.
  3409.  
  3410. // Enable and set a (default) feedrate for all G0 moves
  3411. //#define G0_FEEDRATE 3000 // (mm/min)
  3412. #ifdef G0_FEEDRATE
  3413.   //#define VARIABLE_G0_FEEDRATE // The G0 feedrate is set by F in G0 motion mode
  3414. #endif
  3415.  
  3416. // @section gcode
  3417.  
  3418. /**
  3419.  * Startup commands
  3420.  *
  3421.  * Execute certain G-code commands immediately after power-on.
  3422.  */
  3423. //#define STARTUP_COMMANDS "M17 Z"
  3424.  
  3425. /**
  3426.  * G-code Macros
  3427.  *
  3428.  * Add G-codes M810-M819 to define and run G-code macros.
  3429.  * Macros are not saved to EEPROM.
  3430.  */
  3431. //#define GCODE_MACROS
  3432. #if ENABLED(GCODE_MACROS)
  3433.   #define GCODE_MACROS_SLOTS       5  // Up to 10 may be used
  3434.   #define GCODE_MACROS_SLOT_SIZE  50  // Maximum length of a single macro
  3435. #endif
  3436.  
  3437. /**
  3438.  * User-defined menu items to run custom G-code.
  3439.  * Up to 25 may be defined, but the actual number is LCD-dependent.
  3440.  */
  3441.  
  3442. // @section custom main menu
  3443.  
  3444. // Custom Menu: Main Menu
  3445. //#define CUSTOM_MENU_MAIN
  3446. #if ENABLED(CUSTOM_MENU_MAIN)
  3447.   //#define CUSTOM_MENU_MAIN_TITLE "Custom Commands"
  3448.   #define CUSTOM_MENU_MAIN_SCRIPT_DONE "M117 User Script Done"
  3449.   #define CUSTOM_MENU_MAIN_SCRIPT_AUDIBLE_FEEDBACK
  3450.   //#define CUSTOM_MENU_MAIN_SCRIPT_RETURN   // Return to status screen after a script
  3451.   #define CUSTOM_MENU_MAIN_ONLY_IDLE         // Only show custom menu when the machine is idle
  3452.  
  3453.   #define MAIN_MENU_ITEM_1_DESC "Home & UBL Info"
  3454.   #define MAIN_MENU_ITEM_1_GCODE "G28\nG29 W"
  3455.   //#define MAIN_MENU_ITEM_1_CONFIRM          // Show a confirmation dialog before this action
  3456.  
  3457.   #define MAIN_MENU_ITEM_2_DESC "Preheat for " PREHEAT_1_LABEL
  3458.   #define MAIN_MENU_ITEM_2_GCODE "M140 S" STRINGIFY(PREHEAT_1_TEMP_BED) "\nM104 S" STRINGIFY(PREHEAT_1_TEMP_HOTEND)
  3459.   //#define MAIN_MENU_ITEM_2_CONFIRM
  3460.  
  3461.   //#define MAIN_MENU_ITEM_3_DESC "Preheat for " PREHEAT_2_LABEL
  3462.   //#define MAIN_MENU_ITEM_3_GCODE "M140 S" STRINGIFY(PREHEAT_2_TEMP_BED) "\nM104 S" STRINGIFY(PREHEAT_2_TEMP_HOTEND)
  3463.   //#define MAIN_MENU_ITEM_3_CONFIRM
  3464.  
  3465.   //#define MAIN_MENU_ITEM_4_DESC "Heat Bed/Home/Level"
  3466.   //#define MAIN_MENU_ITEM_4_GCODE "M140 S" STRINGIFY(PREHEAT_2_TEMP_BED) "\nG28\nG29"
  3467.   //#define MAIN_MENU_ITEM_4_CONFIRM
  3468.  
  3469.   //#define MAIN_MENU_ITEM_5_DESC "Home & Info"
  3470.   //#define MAIN_MENU_ITEM_5_GCODE "G28\nM503"
  3471.   //#define MAIN_MENU_ITEM_5_CONFIRM
  3472. #endif
  3473.  
  3474. // @section custom config menu
  3475.  
  3476. // Custom Menu: Configuration Menu
  3477. //#define CUSTOM_MENU_CONFIG
  3478. #if ENABLED(CUSTOM_MENU_CONFIG)
  3479.   //#define CUSTOM_MENU_CONFIG_TITLE "Custom Commands"
  3480.   #define CUSTOM_MENU_CONFIG_SCRIPT_DONE "M117 Wireless Script Done"
  3481.   #define CUSTOM_MENU_CONFIG_SCRIPT_AUDIBLE_FEEDBACK
  3482.   //#define CUSTOM_MENU_CONFIG_SCRIPT_RETURN  // Return to status screen after a script
  3483.   #define CUSTOM_MENU_CONFIG_ONLY_IDLE        // Only show custom menu when the machine is idle
  3484.  
  3485.   #define CONFIG_MENU_ITEM_1_DESC "Wifi ON"
  3486.   #define CONFIG_MENU_ITEM_1_GCODE "M118 [ESP110] WIFI-STA pwd=12345678"
  3487.   //#define CONFIG_MENU_ITEM_1_CONFIRM        // Show a confirmation dialog before this action
  3488.  
  3489.   #define CONFIG_MENU_ITEM_2_DESC "Bluetooth ON"
  3490.   #define CONFIG_MENU_ITEM_2_GCODE "M118 [ESP110] BT pwd=12345678"
  3491.   //#define CONFIG_MENU_ITEM_2_CONFIRM
  3492.  
  3493.   //#define CONFIG_MENU_ITEM_3_DESC "Radio OFF"
  3494.   //#define CONFIG_MENU_ITEM_3_GCODE "M118 [ESP110] OFF pwd=12345678"
  3495.   //#define CONFIG_MENU_ITEM_3_CONFIRM
  3496.  
  3497.   //#define CONFIG_MENU_ITEM_4_DESC "Wifi ????"
  3498.   //#define CONFIG_MENU_ITEM_4_GCODE "M118 ????"
  3499.   //#define CONFIG_MENU_ITEM_4_CONFIRM
  3500.  
  3501.   //#define CONFIG_MENU_ITEM_5_DESC "Wifi ????"
  3502.   //#define CONFIG_MENU_ITEM_5_GCODE "M118 ????"
  3503.   //#define CONFIG_MENU_ITEM_5_CONFIRM
  3504. #endif
  3505.  
  3506. // @section custom buttons
  3507.  
  3508. /**
  3509.  * User-defined buttons to run custom G-code.
  3510.  * Up to 25 may be defined.
  3511.  */
  3512. //#define CUSTOM_USER_BUTTONS
  3513. #if ENABLED(CUSTOM_USER_BUTTONS)
  3514.   //#define BUTTON1_PIN -1
  3515.   #if PIN_EXISTS(BUTTON1)
  3516.     #define BUTTON1_HIT_STATE     LOW       // State of the triggered button. NC=LOW. NO=HIGH.
  3517.     #define BUTTON1_WHEN_PRINTING false     // Button allowed to trigger during printing?
  3518.     #define BUTTON1_GCODE         "G28"
  3519.     #define BUTTON1_DESC          "Homing"  // Optional string to set the LCD status
  3520.   #endif
  3521.  
  3522.   //#define BUTTON2_PIN -1
  3523.   #if PIN_EXISTS(BUTTON2)
  3524.     #define BUTTON2_HIT_STATE     LOW
  3525.     #define BUTTON2_WHEN_PRINTING false
  3526.     #define BUTTON2_GCODE         "M140 S" STRINGIFY(PREHEAT_1_TEMP_BED) "\nM104 S" STRINGIFY(PREHEAT_1_TEMP_HOTEND)
  3527.     #define BUTTON2_DESC          "Preheat for " PREHEAT_1_LABEL
  3528.   #endif
  3529.  
  3530.   //#define BUTTON3_PIN -1
  3531.   #if PIN_EXISTS(BUTTON3)
  3532.     #define BUTTON3_HIT_STATE     LOW
  3533.     #define BUTTON3_WHEN_PRINTING false
  3534.     #define BUTTON3_GCODE         "M140 S" STRINGIFY(PREHEAT_2_TEMP_BED) "\nM104 S" STRINGIFY(PREHEAT_2_TEMP_HOTEND)
  3535.     #define BUTTON3_DESC          "Preheat for " PREHEAT_2_LABEL
  3536.   #endif
  3537. #endif
  3538.  
  3539. // @section host
  3540.  
  3541. /**
  3542.  * Host Action Commands
  3543.  *
  3544.  * Define host streamer action commands in compliance with the standard.
  3545.  *
  3546.  * See https://reprap.org/wiki/G-code#Action_commands
  3547.  * Common commands ........ poweroff, pause, paused, resume, resumed, cancel
  3548.  * G29_RETRY_AND_RECOVER .. probe_rewipe, probe_failed
  3549.  *
  3550.  * Some features add reason codes to extend these commands.
  3551.  *
  3552.  * Host Prompt Support enables Marlin to use the host for user prompts so
  3553.  * filament runout and other processes can be managed from the host side.
  3554.  */
  3555. //#define HOST_ACTION_COMMANDS
  3556. #if ENABLED(HOST_ACTION_COMMANDS)
  3557.   //#define HOST_PAUSE_M76                // Tell the host to pause in response to M76
  3558.   //#define HOST_PROMPT_SUPPORT           // Initiate host prompts to get user feedback
  3559.   #if ENABLED(HOST_PROMPT_SUPPORT)
  3560.     //#define HOST_STATUS_NOTIFICATIONS   // Send some status messages to the host as notifications
  3561.   #endif
  3562.   //#define HOST_START_MENU_ITEM          // Add a menu item that tells the host to start
  3563.   //#define HOST_SHUTDOWN_MENU_ITEM       // Add a menu item that tells the host to shut down
  3564. #endif
  3565.  
  3566. // @section extras
  3567.  
  3568. /**
  3569.  * Cancel Objects
  3570.  *
  3571.  * Implement M486 to allow Marlin to skip objects
  3572.  */
  3573. //#define CANCEL_OBJECTS
  3574. #if ENABLED(CANCEL_OBJECTS)
  3575.   #define CANCEL_OBJECTS_REPORTING // Emit the current object as a status message
  3576. #endif
  3577.  
  3578. /**
  3579.  * I2C position encoders for closed loop control.
  3580.  * Developed by Chris Barr at Aus3D.
  3581.  *
  3582.  * Wiki: https://wiki.aus3d.com.au/Magnetic_Encoder
  3583.  * Github: https://github.com/Aus3D/MagneticEncoder
  3584.  *
  3585.  * Supplier: https://aus3d.com.au/magnetic-encoder-module
  3586.  * Alternative Supplier: https://reliabuild3d.com/
  3587.  *
  3588.  * Reliabuild encoders have been modified to improve reliability.
  3589.  * @section i2c encoders
  3590.  */
  3591.  
  3592. //#define I2C_POSITION_ENCODERS
  3593. #if ENABLED(I2C_POSITION_ENCODERS)
  3594.  
  3595.   #define I2CPE_ENCODER_CNT         1                       // The number of encoders installed; max of 5
  3596.                                                             // encoders supported currently.
  3597.  
  3598.   #define I2CPE_ENC_1_ADDR          I2CPE_PRESET_ADDR_X     // I2C address of the encoder. 30-200.
  3599.   #define I2CPE_ENC_1_AXIS          X_AXIS                  // Axis the encoder module is installed on.  <X|Y|Z|E>_AXIS.
  3600.   #define I2CPE_ENC_1_TYPE          I2CPE_ENC_TYPE_LINEAR   // Type of encoder:  I2CPE_ENC_TYPE_LINEAR -or-
  3601.                                                             // I2CPE_ENC_TYPE_ROTARY.
  3602.   #define I2CPE_ENC_1_TICKS_UNIT    2048                    // 1024 for magnetic strips with 2mm poles; 2048 for
  3603.                                                             // 1mm poles. For linear encoders this is ticks / mm,
  3604.                                                             // for rotary encoders this is ticks / revolution.
  3605.   //#define I2CPE_ENC_1_TICKS_REV     (16 * 200)            // Only needed for rotary encoders; number of stepper
  3606.                                                             // steps per full revolution (motor steps/rev * microstepping)
  3607.   //#define I2CPE_ENC_1_INVERT                              // Invert the direction of axis travel.
  3608.   #define I2CPE_ENC_1_EC_METHOD     I2CPE_ECM_MICROSTEP     // Type of error error correction.
  3609.   #define I2CPE_ENC_1_EC_THRESH     0.10                    // Threshold size for error (in mm) above which the
  3610.                                                             // printer will attempt to correct the error; errors
  3611.                                                             // smaller than this are ignored to minimize effects of
  3612.                                                             // measurement noise / latency (filter).
  3613.  
  3614.   #define I2CPE_ENC_2_ADDR          I2CPE_PRESET_ADDR_Y     // Same as above, but for encoder 2.
  3615.   #define I2CPE_ENC_2_AXIS          Y_AXIS
  3616.   #define I2CPE_ENC_2_TYPE          I2CPE_ENC_TYPE_LINEAR
  3617.   #define I2CPE_ENC_2_TICKS_UNIT    2048
  3618.   //#define I2CPE_ENC_2_TICKS_REV   (16 * 200)
  3619.   //#define I2CPE_ENC_2_INVERT
  3620.   #define I2CPE_ENC_2_EC_METHOD     I2CPE_ECM_MICROSTEP
  3621.   #define I2CPE_ENC_2_EC_THRESH     0.10
  3622.  
  3623.   #define I2CPE_ENC_3_ADDR          I2CPE_PRESET_ADDR_Z     // Encoder 3.  Add additional configuration options
  3624.   #define I2CPE_ENC_3_AXIS          Z_AXIS                  // as above, or use defaults below.
  3625.  
  3626.   #define I2CPE_ENC_4_ADDR          I2CPE_PRESET_ADDR_E     // Encoder 4.
  3627.   #define I2CPE_ENC_4_AXIS          E_AXIS
  3628.  
  3629.   #define I2CPE_ENC_5_ADDR          34                      // Encoder 5.
  3630.   #define I2CPE_ENC_5_AXIS          E_AXIS
  3631.  
  3632.   // Default settings for encoders which are enabled, but without settings configured above.
  3633.   #define I2CPE_DEF_TYPE            I2CPE_ENC_TYPE_LINEAR
  3634.   #define I2CPE_DEF_ENC_TICKS_UNIT  2048
  3635.   #define I2CPE_DEF_TICKS_REV       (16 * 200)
  3636.   #define I2CPE_DEF_EC_METHOD       I2CPE_ECM_NONE
  3637.   #define I2CPE_DEF_EC_THRESH       0.1
  3638.  
  3639.   //#define I2CPE_ERR_THRESH_ABORT  100.0                   // Threshold size for error (in mm) error on any given
  3640.                                                             // axis after which the printer will abort. Comment out to
  3641.                                                             // disable abort behavior.
  3642.  
  3643.   #define I2CPE_TIME_TRUSTED        10000                   // After an encoder fault, there must be no further fault
  3644.                                                             // for this amount of time (in ms) before the encoder
  3645.                                                             // is trusted again.
  3646.  
  3647.   /**
  3648.    * Position is checked every time a new command is executed from the buffer but during long moves,
  3649.    * this setting determines the minimum update time between checks. A value of 100 works well with
  3650.    * error rolling average when attempting to correct only for skips and not for vibration.
  3651.    */
  3652.   #define I2CPE_MIN_UPD_TIME_MS     4                       // (ms) Minimum time between encoder checks.
  3653.  
  3654.   // Use a rolling average to identify persistent errors that indicate skips, as opposed to vibration and noise.
  3655.   #define I2CPE_ERR_ROLLING_AVERAGE
  3656.  
  3657. #endif // I2C_POSITION_ENCODERS
  3658.  
  3659. /**
  3660.  * Analog Joystick(s)
  3661.  * @section joystick
  3662.  */
  3663. //#define JOYSTICK
  3664. #if ENABLED(JOYSTICK)
  3665.   #define JOY_X_PIN    5  // RAMPS: Suggested pin A5  on AUX2
  3666.   #define JOY_Y_PIN   10  // RAMPS: Suggested pin A10 on AUX2
  3667.   #define JOY_Z_PIN   12  // RAMPS: Suggested pin A12 on AUX2
  3668.   #define JOY_EN_PIN  44  // RAMPS: Suggested pin D44 on AUX2
  3669.  
  3670.   //#define INVERT_JOY_X  // Enable if X direction is reversed
  3671.   //#define INVERT_JOY_Y  // Enable if Y direction is reversed
  3672.   //#define INVERT_JOY_Z  // Enable if Z direction is reversed
  3673.  
  3674.   // Use M119 with JOYSTICK_DEBUG to find reasonable values after connecting:
  3675.   #define JOY_X_LIMITS { 5600, 8190-100, 8190+100, 10800 } // min, deadzone start, deadzone end, max
  3676.   #define JOY_Y_LIMITS { 5600, 8250-100, 8250+100, 11000 }
  3677.   #define JOY_Z_LIMITS { 4800, 8080-100, 8080+100, 11550 }
  3678.   //#define JOYSTICK_DEBUG
  3679. #endif
  3680.  
  3681. /**
  3682.  * Mechanical Gantry Calibration
  3683.  * Modern replacement for the Průša TMC_Z_CALIBRATION.
  3684.  * Adds capability to work with any adjustable current drivers.
  3685.  * Implemented as G34 because M915 is deprecated.
  3686.  * @section calibrate
  3687.  */
  3688. //#define MECHANICAL_GANTRY_CALIBRATION
  3689. #if ENABLED(MECHANICAL_GANTRY_CALIBRATION)
  3690.   #define GANTRY_CALIBRATION_CURRENT          600     // Default calibration current in ma
  3691.   #define GANTRY_CALIBRATION_EXTRA_HEIGHT      15     // Extra distance in mm past Z_###_POS to move
  3692.   #define GANTRY_CALIBRATION_FEEDRATE         500     // Feedrate for correction move
  3693.   //#define GANTRY_CALIBRATION_TO_MIN                 // Enable to calibrate Z in the MIN direction
  3694.  
  3695.   //#define GANTRY_CALIBRATION_SAFE_POSITION XY_CENTER // Safe position for nozzle
  3696.   //#define GANTRY_CALIBRATION_XY_PARK_FEEDRATE 3000  // XY Park Feedrate - MMM
  3697.   //#define GANTRY_CALIBRATION_COMMANDS_PRE   ""
  3698.   #define GANTRY_CALIBRATION_COMMANDS_POST  "G28"     // G28 highly recommended to ensure an accurate position
  3699. #endif
  3700.  
  3701. /**
  3702.  * Instant freeze / unfreeze functionality
  3703.  * Potentially useful for emergency stop that allows being resumed.
  3704.  * @section interface
  3705.  */
  3706. //#define FREEZE_FEATURE
  3707. #if ENABLED(FREEZE_FEATURE)
  3708.   //#define FREEZE_PIN 41   // Override the default (KILL) pin here
  3709.   #define FREEZE_STATE LOW  // State of pin indicating freeze
  3710. #endif
  3711.  
  3712. /**
  3713.  * MAX7219 Debug Matrix
  3714.  *
  3715.  * Add support for a low-cost 8x8 LED Matrix based on the Max7219 chip as a realtime status display.
  3716.  * Requires 3 signal wires. Some useful debug options are included to demonstrate its usage.
  3717.  * @section debug matrix
  3718.  */
  3719. //#define MAX7219_DEBUG
  3720. #if ENABLED(MAX7219_DEBUG)
  3721.   #define MAX7219_CLK_PIN   64
  3722.   #define MAX7219_DIN_PIN   57
  3723.   #define MAX7219_LOAD_PIN  44
  3724.  
  3725.   //#define MAX7219_GCODE          // Add the M7219 G-code to control the LED matrix
  3726.   #define MAX7219_INIT_TEST    2   // Test pattern at startup: 0=none, 1=sweep, 2=spiral
  3727.   #define MAX7219_NUMBER_UNITS 1   // Number of Max7219 units in chain.
  3728.   #define MAX7219_ROTATE       0   // Rotate the display clockwise (in multiples of +/- 90°)
  3729.                                    // connector at:  right=0   bottom=-90  top=90  left=180
  3730.   //#define MAX7219_REVERSE_ORDER  // The order of the LED matrix units may be reversed
  3731.   //#define MAX7219_REVERSE_EACH   // The LEDs in each matrix unit row may be reversed
  3732.   //#define MAX7219_SIDE_BY_SIDE   // Big chip+matrix boards can be chained side-by-side
  3733.  
  3734.   /**
  3735.    * Sample debug features
  3736.    * If you add more debug displays, be careful to avoid conflicts!
  3737.    */
  3738.   #define MAX7219_DEBUG_PRINTER_ALIVE    // Blink corner LED of 8x8 matrix to show that the firmware is functioning
  3739.   #define MAX7219_DEBUG_PLANNER_HEAD  2  // Show the planner queue head position on this and the next LED matrix row
  3740.   #define MAX7219_DEBUG_PLANNER_TAIL  4  // Show the planner queue tail position on this and the next LED matrix row
  3741.  
  3742.   #define MAX7219_DEBUG_PLANNER_QUEUE 0  // Show the current planner queue depth on this and the next LED matrix row
  3743.                                          // If you experience stuttering, reboots, etc. this option can reveal how
  3744.                                          // tweaks made to the configuration are affecting the printer in real-time.
  3745.   #define MAX7219_DEBUG_PROFILE       6  // Display the fraction of CPU time spent in profiled code on this LED matrix
  3746.                                          // row. By default idle() is profiled so this shows how "idle" the processor is.
  3747.                                          // See class CodeProfiler.
  3748. #endif
  3749.  
  3750. /**
  3751.  * NanoDLP Sync support
  3752.  *
  3753.  * Support for Synchronized Z moves when used with NanoDLP. G0/G1 axis moves will
  3754.  * output a "Z_move_comp" string to enable synchronization with DLP projector exposure.
  3755.  * This feature allows you to use [[WaitForDoneMessage]] instead of M400 commands.
  3756.  * @section nanodlp
  3757.  */
  3758. //#define NANODLP_Z_SYNC
  3759. #if ENABLED(NANODLP_Z_SYNC)
  3760.   //#define NANODLP_ALL_AXIS  // Send a "Z_move_comp" report for any axis move (not just Z).
  3761. #endif
  3762.  
  3763. /**
  3764.  * Ethernet. Use M552 to enable and set the IP address.
  3765.  * @section network
  3766.  */
  3767. #if HAS_ETHERNET
  3768.   #define MAC_ADDRESS { 0xDE, 0xAD, 0xBE, 0xEF, 0xF0, 0x0D }  // A MAC address unique to your network
  3769. #endif
  3770.  
  3771. /**
  3772.  * WiFi Support (Espressif ESP32 WiFi)
  3773.  */
  3774. //#define WIFISUPPORT         // Marlin embedded WiFi management
  3775. //#define ESP3D_WIFISUPPORT   // ESP3D Library WiFi management (https://github.com/luc-github/ESP3DLib)
  3776.  
  3777. #if EITHER(WIFISUPPORT, ESP3D_WIFISUPPORT)
  3778.   //#define WEBSUPPORT          // Start a webserver (which may include auto-discovery)
  3779.   //#define OTASUPPORT          // Support over-the-air firmware updates
  3780.   //#define WIFI_CUSTOM_COMMAND // Accept feature config commands (e.g., WiFi ESP3D) from the host
  3781.  
  3782.   /**
  3783.    * To set a default WiFi SSID / Password, create a file called Configuration_Secure.h with
  3784.    * the following defines, customized for your network. This specific file is excluded via
  3785.    * .gitignore to prevent it from accidentally leaking to the public.
  3786.    *
  3787.    *   #define WIFI_SSID "WiFi SSID"
  3788.    *   #define WIFI_PWD  "WiFi Password"
  3789.    */
  3790.   //#include "Configuration_Secure.h" // External file with WiFi SSID / Password
  3791. #endif
  3792.  
  3793. // @section multi-material
  3794.  
  3795. /**
  3796.  * Průša Multi-Material Unit (MMU)
  3797.  * Enable in Configuration.h
  3798.  *
  3799.  * These devices allow a single stepper driver on the board to drive
  3800.  * multi-material feeders with any number of stepper motors.
  3801.  */
  3802. #if HAS_PRUSA_MMU1
  3803.   /**
  3804.    * This option only allows the multiplexer to switch on tool-change.
  3805.    * Additional options to configure custom E moves are pending.
  3806.    *
  3807.    * Override the default DIO selector pins here, if needed.
  3808.    * Some pins files may provide defaults for these pins.
  3809.    */
  3810.   //#define E_MUX0_PIN 40  // Always Required
  3811.   //#define E_MUX1_PIN 42  // Needed for 3 to 8 inputs
  3812.   //#define E_MUX2_PIN 44  // Needed for 5 to 8 inputs
  3813. #elif HAS_PRUSA_MMU2
  3814.   // Serial port used for communication with MMU2.
  3815.   #define MMU2_SERIAL_PORT 2
  3816.  
  3817.   // Use hardware reset for MMU if a pin is defined for it
  3818.   //#define MMU2_RST_PIN 23
  3819.  
  3820.   // Enable if the MMU2 has 12V stepper motors (MMU2 Firmware 1.0.2 and up)
  3821.   //#define MMU2_MODE_12V
  3822.  
  3823.   // G-code to execute when MMU2 F.I.N.D.A. probe detects filament runout
  3824.   #define MMU2_FILAMENT_RUNOUT_SCRIPT "M600"
  3825.  
  3826.   // Add an LCD menu for MMU2
  3827.   //#define MMU2_MENUS
  3828.   #if EITHER(MMU2_MENUS, HAS_PRUSA_MMU2S)
  3829.     // Settings for filament load / unload from the LCD menu.
  3830.     // This is for Průša MK3-style extruders. Customize for your hardware.
  3831.     #define MMU2_FILAMENTCHANGE_EJECT_FEED 80.0
  3832.     #define MMU2_LOAD_TO_NOZZLE_SEQUENCE \
  3833.       {  7.2, 1145 }, \
  3834.       { 14.4,  871 }, \
  3835.       { 36.0, 1393 }, \
  3836.       { 14.4,  871 }, \
  3837.       { 50.0,  198 }
  3838.  
  3839.     #define MMU2_RAMMING_SEQUENCE \
  3840.       {   1.0, 1000 }, \
  3841.       {   1.0, 1500 }, \
  3842.       {   2.0, 2000 }, \
  3843.       {   1.5, 3000 }, \
  3844.       {   2.5, 4000 }, \
  3845.       { -15.0, 5000 }, \
  3846.       { -14.0, 1200 }, \
  3847.       {  -6.0,  600 }, \
  3848.       {  10.0,  700 }, \
  3849.       { -10.0,  400 }, \
  3850.       { -50.0, 2000 }
  3851.   #endif
  3852.  
  3853.   /**
  3854.    * Using a sensor like the MMU2S
  3855.    * This mode requires a MK3S extruder with a sensor at the extruder idler, like the MMU2S.
  3856.    * See https://help.prusa3d.com/en/guide/3b-mk3s-mk2-5s-extruder-upgrade_41560, step 11
  3857.    */
  3858.   #if HAS_PRUSA_MMU2S
  3859.     #define MMU2_C0_RETRY   5             // Number of retries (total time = timeout*retries)
  3860.  
  3861.     #define MMU2_CAN_LOAD_FEEDRATE 800    // (mm/min)
  3862.     #define MMU2_CAN_LOAD_SEQUENCE \
  3863.       {  0.1, MMU2_CAN_LOAD_FEEDRATE }, \
  3864.       {  60.0, MMU2_CAN_LOAD_FEEDRATE }, \
  3865.       { -52.0, MMU2_CAN_LOAD_FEEDRATE }
  3866.  
  3867.     #define MMU2_CAN_LOAD_RETRACT   6.0   // (mm) Keep under the distance between Load Sequence values
  3868.     #define MMU2_CAN_LOAD_DEVIATION 0.8   // (mm) Acceptable deviation
  3869.  
  3870.     #define MMU2_CAN_LOAD_INCREMENT 0.2   // (mm) To reuse within MMU2 module
  3871.     #define MMU2_CAN_LOAD_INCREMENT_SEQUENCE \
  3872.       { -MMU2_CAN_LOAD_INCREMENT, MMU2_CAN_LOAD_FEEDRATE }
  3873.  
  3874.   #else
  3875.  
  3876.     /**
  3877.      * MMU1 Extruder Sensor
  3878.      *
  3879.      * Support for a Průša (or other) IR Sensor to detect filament near the extruder
  3880.      * and make loading more reliable. Suitable for an extruder equipped with a filament
  3881.      * sensor less than 38mm from the gears.
  3882.      *
  3883.      * During loading the extruder will stop when the sensor is triggered, then do a last
  3884.      * move up to the gears. If no filament is detected, the MMU2 can make some more attempts.
  3885.      * If all attempts fail, a filament runout will be triggered.
  3886.      */
  3887.     //#define MMU_EXTRUDER_SENSOR
  3888.     #if ENABLED(MMU_EXTRUDER_SENSOR)
  3889.       #define MMU_LOADING_ATTEMPTS_NR 5 // max. number of attempts to load filament if first load fail
  3890.     #endif
  3891.  
  3892.   #endif
  3893.  
  3894.   //#define MMU2_DEBUG  // Write debug info to serial output
  3895.  
  3896. #endif // HAS_PRUSA_MMU2
  3897.  
  3898. /**
  3899.  * Advanced Print Counter settings
  3900.  * @section stats
  3901.  */
  3902. #if ENABLED(PRINTCOUNTER)
  3903.   #define SERVICE_WARNING_BUZZES  3
  3904.   // Activate up to 3 service interval watchdogs
  3905.   //#define SERVICE_NAME_1      "Service S"
  3906.   //#define SERVICE_INTERVAL_1  100 // print hours
  3907.   //#define SERVICE_NAME_2      "Service L"
  3908.   //#define SERVICE_INTERVAL_2  200 // print hours
  3909.   //#define SERVICE_NAME_3      "Service 3"
  3910.   //#define SERVICE_INTERVAL_3    1 // print hours
  3911. #endif
  3912.  
  3913. // @section develop
  3914.  
  3915. //
  3916. // M100 Free Memory Watcher to debug memory usage
  3917. //
  3918. //#define M100_FREE_MEMORY_WATCHER
  3919.  
  3920. //
  3921. // M42 - Set pin states
  3922. //
  3923. //#define DIRECT_PIN_CONTROL
  3924.  
  3925. //
  3926. // M43 - display pin status, toggle pins, watch pins, watch endstops & toggle LED, test servo probe
  3927. //
  3928. //#define PINS_DEBUGGING
  3929.  
  3930. // Enable Tests that will run at startup and produce a report
  3931. //#define MARLIN_TEST_BUILD
  3932.  
  3933. // Enable Marlin dev mode which adds some special commands
  3934. //#define MARLIN_DEV_MODE
  3935.  
  3936. #if ENABLED(MARLIN_DEV_MODE)
  3937.   /**
  3938.    * D576 - Buffer Monitoring
  3939.    * To help diagnose print quality issues stemming from empty command buffers.
  3940.    */
  3941.   //#define BUFFER_MONITORING
  3942. #endif
  3943.  
  3944. /**
  3945.  * Postmortem Debugging captures misbehavior and outputs the CPU status and backtrace to serial.
  3946.  * When running in the debugger it will break for debugging. This is useful to help understand
  3947.  * a crash from a remote location. Requires ~400 bytes of SRAM and 5Kb of flash.
  3948.  */
  3949. //#define POSTMORTEM_DEBUGGING
  3950.  
  3951. /**
  3952.  * Software Reset options
  3953.  */
  3954. //#define SOFT_RESET_VIA_SERIAL         // 'KILL' and '^X' commands will soft-reset the controller
  3955. //#define SOFT_RESET_ON_KILL            // Use a digital button to soft-reset the controller after KILL
  3956.  
  3957. // Report uncleaned reset reason from register r2 instead of MCUSR. Supported by Optiboot on AVR.
  3958. //#define OPTIBOOT_RESET_REASON
  3959.