Advertisement
Guest User

Untitled

a guest
Dec 28th, 2016
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.06 KB | None | 0 0
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22.  
  23. /**
  24. * Configuration_adv.h
  25. *
  26. * Advanced settings.
  27. * Only change these if you know exactly what you're doing.
  28. * Some of these settings can damage your printer if improperly set!
  29. *
  30. * Basic settings can be found in Configuration.h
  31. *
  32. */
  33. #ifndef CONFIGURATION_ADV_H
  34. #define CONFIGURATION_ADV_H
  35.  
  36. #include "Conditionals.h"
  37.  
  38. // @section temperature
  39.  
  40. //===========================================================================
  41. //=============================Thermal Settings ============================
  42. //===========================================================================
  43.  
  44. #if DISABLED(PIDTEMPBED)
  45. #define BED_CHECK_INTERVAL 5000 // ms between checks in bang-bang control
  46. #if ENABLED(BED_LIMIT_SWITCHING)
  47. #define BED_HYSTERESIS 2 // Only disable heating if T>target+BED_HYSTERESIS and enable heating if T>target-BED_HYSTERESIS
  48. #endif
  49. #endif
  50.  
  51. /**
  52. * Thermal Protection protects your printer from damage and fire if a
  53. * thermistor falls out or temperature sensors fail in any way.
  54. *
  55. * The issue: If a thermistor falls out or a temperature sensor fails,
  56. * Marlin can no longer sense the actual temperature. Since a disconnected
  57. * thermistor reads as a low temperature, the firmware will keep the heater on.
  58. *
  59. * The solution: Once the temperature reaches the target, start observing.
  60. * If the temperature stays too far below the target (hysteresis) for too long (period),
  61. * the firmware will halt the machine as a safety precaution.
  62. *
  63. * If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
  64. */
  65. #if ENABLED(THERMAL_PROTECTION_HOTENDS)
  66. #define THERMAL_PROTECTION_PERIOD 40 // Seconds
  67. #define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
  68.  
  69. /**
  70. * Whenever an M104 or M109 increases the target temperature the firmware will wait for the
  71. * WATCH_TEMP_PERIOD to expire, and if the temperature hasn't increased by WATCH_TEMP_INCREASE
  72. * degrees, the machine is halted, requiring a hard reset. This test restarts with any M104/M109,
  73. * but only if the current temperature is far enough below the target for a reliable test.
  74. *
  75. * If you get false positives for "Heating failed" increase WATCH_TEMP_PERIOD and/or decrease WATCH_TEMP_INCREASE
  76. * WATCH_TEMP_INCREASE should not be below 2.
  77. */
  78. #define WATCH_TEMP_PERIOD 20 // Seconds
  79. #define WATCH_TEMP_INCREASE 2 // Degrees Celsius
  80. #endif
  81.  
  82. /**
  83. * Thermal Protection parameters for the bed
  84. * are like the above for the hotends.
  85. * WATCH_TEMP_BED_PERIOD and WATCH_TEMP_BED_INCREASE are not imlemented now.
  86. */
  87. #if ENABLED(THERMAL_PROTECTION_BED)
  88. #define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
  89. #define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
  90. #endif
  91.  
  92. #if ENABLED(PIDTEMP)
  93. // this adds an experimental additional term to the heating power, proportional to the extrusion speed.
  94. // if Kc is chosen well, the additional required power due to increased melting should be compensated.
  95. #define PID_ADD_EXTRUSION_RATE
  96. #if ENABLED(PID_ADD_EXTRUSION_RATE)
  97. #define DEFAULT_Kc (100) //heating power=Kc*(e_speed)
  98. #define LPQ_MAX_LEN 50
  99. #endif
  100. #endif
  101.  
  102. /**
  103. * Automatic Temperature:
  104. * The hotend target temperature is calculated by all the buffered lines of gcode.
  105. * The maximum buffered steps/sec of the extruder motor is called "se".
  106. * Start autotemp mode with M109 S<mintemp> B<maxtemp> F<factor>
  107. * The target temperature is set to mintemp+factor*se[steps/sec] and is limited by
  108. * mintemp and maxtemp. Turn this off by executing M109 without F*
  109. * Also, if the temperature is set to a value below mintemp, it will not be changed by autotemp.
  110. * On an Ultimaker, some initial testing worked with M109 S215 B260 F1 in the start.gcode
  111. */
  112. #define AUTOTEMP
  113. #if ENABLED(AUTOTEMP)
  114. #define AUTOTEMP_OLDWEIGHT 0.98
  115. #endif
  116.  
  117. //Show Temperature ADC value
  118. //The M105 command return, besides traditional information, the ADC value read from temperature sensors.
  119. //#define SHOW_TEMP_ADC_VALUES
  120.  
  121. // @section extruder
  122.  
  123. // extruder run-out prevention.
  124. //if the machine is idle, and the temperature over MINTEMP, every couple of SECONDS some filament is extruded
  125. //#define EXTRUDER_RUNOUT_PREVENT
  126. #define EXTRUDER_RUNOUT_MINTEMP 190
  127. #define EXTRUDER_RUNOUT_SECONDS 30.
  128. #define EXTRUDER_RUNOUT_ESTEPS 14. //mm filament
  129. #define EXTRUDER_RUNOUT_SPEED 1500. //extrusion speed
  130. #define EXTRUDER_RUNOUT_EXTRUDE 100
  131.  
  132. // @section temperature
  133.  
  134. //These defines help to calibrate the AD595 sensor in case you get wrong temperature measurements.
  135. //The measured temperature is defined as "actualTemp = (measuredTemp * TEMP_SENSOR_AD595_GAIN) + TEMP_SENSOR_AD595_OFFSET"
  136. #define TEMP_SENSOR_AD595_OFFSET 0.0
  137. #define TEMP_SENSOR_AD595_GAIN 1.0
  138.  
  139. //This is for controlling a fan to cool down the stepper drivers
  140. //it will turn on when any driver is enabled
  141. //and turn off after the set amount of seconds from last driver being disabled again
  142. #define CONTROLLERFAN_PIN -1 //Pin used for the fan to cool controller (-1 to disable)
  143. #define CONTROLLERFAN_SECS 60 //How many seconds, after all motors were disabled, the fan should run
  144. #define CONTROLLERFAN_SPEED 255 // == full speed
  145.  
  146. // When first starting the main fan, run it at full speed for the
  147. // given number of milliseconds. This gets the fan spinning reliably
  148. // before setting a PWM value. (Does not work with software PWM for fan on Sanguinololu)
  149. //#define FAN_KICKSTART_TIME 100
  150.  
  151. // This defines the minimal speed for the main fan, run in PWM mode
  152. // to enable uncomment and set minimal PWM speed for reliable running (1-255)
  153. // if fan speed is [1 - (FAN_MIN_PWM-1)] it is set to FAN_MIN_PWM
  154. //#define FAN_MIN_PWM 50
  155.  
  156. // @section extruder
  157.  
  158. // Extruder cooling fans
  159. // Configure fan pin outputs to automatically turn on/off when the associated
  160. // extruder temperature is above/below EXTRUDER_AUTO_FAN_TEMPERATURE.
  161. // Multiple extruders can be assigned to the same pin in which case
  162. // the fan will turn on when any selected extruder is above the threshold.
  163. #define EXTRUDER_0_AUTO_FAN_PIN 9
  164. #define EXTRUDER_1_AUTO_FAN_PIN -1
  165. #define EXTRUDER_2_AUTO_FAN_PIN -1
  166. #define EXTRUDER_3_AUTO_FAN_PIN -1
  167. #define EXTRUDER_AUTO_FAN_TEMPERATURE 50
  168. #define EXTRUDER_AUTO_FAN_SPEED 255 // == full speed
  169.  
  170.  
  171. //===========================================================================
  172. //=============================Mechanical Settings===========================
  173. //===========================================================================
  174.  
  175. // @section homing
  176.  
  177. #define ENDSTOPS_ONLY_FOR_HOMING // If defined the endstops will only be used for homing
  178.  
  179. // @section extras
  180.  
  181. //#define Z_LATE_ENABLE // Enable Z the last moment. Needed if your Z driver overheats.
  182.  
  183. // A single Z stepper driver is usually used to drive 2 stepper motors.
  184. // Uncomment this define to utilize a separate stepper driver for each Z axis motor.
  185. // Only a few motherboards support this, like RAMPS, which have dual extruder support (the 2nd, often unused, extruder driver is used
  186. // to control the 2nd Z axis stepper motor). The pins are currently only defined for a RAMPS motherboards.
  187. // On a RAMPS (or other 5 driver) motherboard, using this feature will limit you to using 1 extruder.
  188. //#define Z_DUAL_STEPPER_DRIVERS
  189.  
  190. #if ENABLED(Z_DUAL_STEPPER_DRIVERS)
  191.  
  192. // Z_DUAL_ENDSTOPS is a feature to enable the use of 2 endstops for both Z steppers - Let's call them Z stepper and Z2 stepper.
  193. // That way the machine is capable to align the bed during home, since both Z steppers are homed.
  194. // There is also an implementation of M666 (software endstops adjustment) to this feature.
  195. // After Z homing, this adjustment is applied to just one of the steppers in order to align the bed.
  196. // One just need to home the Z axis and measure the distance difference between both Z axis and apply the math: Z adjust = Z - Z2.
  197. // If the Z stepper axis is closer to the bed, the measure Z > Z2 (yes, it is.. think about it) and the Z adjust would be positive.
  198. // Play a little bit with small adjustments (0.5mm) and check the behaviour.
  199. // The M119 (endstops report) will start reporting the Z2 Endstop as well.
  200.  
  201. //#define Z_DUAL_ENDSTOPS
  202.  
  203. #if ENABLED(Z_DUAL_ENDSTOPS)
  204. #define Z2_USE_ENDSTOP _XMAX_
  205. #endif
  206.  
  207. #endif // Z_DUAL_STEPPER_DRIVERS
  208.  
  209. // Same again but for Y Axis.
  210. //#define Y_DUAL_STEPPER_DRIVERS
  211.  
  212. #if ENABLED(Y_DUAL_STEPPER_DRIVERS)
  213. // Define if the two Y drives need to rotate in opposite directions
  214. #define INVERT_Y2_VS_Y_DIR true
  215. #endif
  216.  
  217. // Enable this for dual x-carriage printers.
  218. // A dual x-carriage design has the advantage that the inactive extruder can be parked which
  219. // prevents hot-end ooze contaminating the print. It also reduces the weight of each x-carriage
  220. // allowing faster printing speeds.
  221. //#define DUAL_X_CARRIAGE
  222. #if ENABLED(DUAL_X_CARRIAGE)
  223. // Configuration for second X-carriage
  224. // Note: the first x-carriage is defined as the x-carriage which homes to the minimum endstop;
  225. // the second x-carriage always homes to the maximum endstop.
  226. #define X2_MIN_POS 80 // set minimum to ensure second x-carriage doesn't hit the parked first X-carriage
  227. #define X2_MAX_POS 353 // set maximum to the distance between toolheads when both heads are homed
  228. #define X2_HOME_DIR 1 // the second X-carriage always homes to the maximum endstop position
  229. #define X2_HOME_POS X2_MAX_POS // default home position is the maximum carriage position
  230. // However: In this mode the EXTRUDER_OFFSET_X value for the second extruder provides a software
  231. // override for X2_HOME_POS. This also allow recalibration of the distance between the two endstops
  232. // without modifying the firmware (through the "M218 T1 X???" command).
  233. // Remember: you should set the second extruder x-offset to 0 in your slicer.
  234.  
  235. // Pins for second x-carriage stepper driver (defined here to avoid further complicating pins.h)
  236. #define X2_ENABLE_PIN 29
  237. #define X2_STEP_PIN 25
  238. #define X2_DIR_PIN 23
  239.  
  240. // There are a few selectable movement modes for dual x-carriages using M605 S<mode>
  241. // Mode 0: Full control. The slicer has full control over both x-carriages and can achieve optimal travel results
  242. // as long as it supports dual x-carriages. (M605 S0)
  243. // Mode 1: Auto-park mode. The firmware will automatically park and unpark the x-carriages on tool changes so
  244. // that additional slicer support is not required. (M605 S1)
  245. // Mode 2: Duplication mode. The firmware will transparently make the second x-carriage and extruder copy all
  246. // actions of the first x-carriage. This allows the printer to print 2 arbitrary items at
  247. // once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
  248.  
  249. // This is the default power-up mode which can be later using M605.
  250. #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
  251.  
  252. // Default settings in "Auto-park Mode"
  253. #define TOOLCHANGE_PARK_ZLIFT 0.2 // the distance to raise Z axis when parking an extruder
  254. #define TOOLCHANGE_UNPARK_ZLIFT 1 // the distance to raise Z axis when unparking an extruder
  255.  
  256. // Default x offset in duplication mode (typically set to half print bed width)
  257. #define DEFAULT_DUPLICATION_X_OFFSET 100
  258.  
  259. #endif //DUAL_X_CARRIAGE
  260.  
  261. // @section homing
  262.  
  263. //homing hits the endstop, then retracts by this distance, before it tries to slowly bump again:
  264. #define X_HOME_BUMP_MM 5
  265. #define Y_HOME_BUMP_MM 5
  266. #define Z_HOME_BUMP_MM 2
  267. #define HOMING_BUMP_DIVISOR {2, 2, 4} // Re-Bump Speed Divisor (Divides the Homing Feedrate)
  268. //#define QUICK_HOME //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
  269.  
  270. // When G28 is called, this option will make Y home before X
  271. //#define HOME_Y_BEFORE_X
  272.  
  273. // @section machine
  274.  
  275. #define AXIS_RELATIVE_MODES {false, false, false, false}
  276.  
  277. // @section machine
  278.  
  279. //By default pololu step drivers require an active high signal. However, some high power drivers require an active low signal as step.
  280. #define INVERT_X_STEP_PIN false
  281. #define INVERT_Y_STEP_PIN false
  282. #define INVERT_Z_STEP_PIN false
  283. #define INVERT_E_STEP_PIN false
  284.  
  285. // Default stepper release if idle. Set to 0 to deactivate.
  286. // Steppers will shut down DEFAULT_STEPPER_DEACTIVE_TIME seconds after the last move when DISABLE_INACTIVE_? is true.
  287. // Time can be set by M18 and M84.
  288. #define DEFAULT_STEPPER_DEACTIVE_TIME 120
  289. #define DISABLE_INACTIVE_X true
  290. #define DISABLE_INACTIVE_Y true
  291. #define DISABLE_INACTIVE_Z true // set to false if the nozzle will fall down on your printed part when print has finished.
  292. #define DISABLE_INACTIVE_E true
  293.  
  294. #define DEFAULT_MINIMUMFEEDRATE 0.0 // minimum feedrate
  295. #define DEFAULT_MINTRAVELFEEDRATE 0.0
  296.  
  297. // @section lcd
  298.  
  299. #if ENABLED(ULTIPANEL)
  300. #define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
  301. #define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
  302. #endif
  303.  
  304. // @section extras
  305.  
  306. // minimum time in microseconds that a movement needs to take if the buffer is emptied.
  307. #define DEFAULT_MINSEGMENTTIME 20000
  308.  
  309. // If defined the movements slow down when the look ahead buffer is only half full
  310. #define SLOWDOWN
  311.  
  312. // Frequency limit
  313. // See nophead's blog for more info
  314. // Not working O
  315. //#define XY_FREQUENCY_LIMIT 15
  316.  
  317. // Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
  318. // of the buffer and all stops. This should not be much greater than zero and should only be changed
  319. // if unwanted behavior is observed on a user's machine when running at very slow speeds.
  320. #define MINIMUM_PLANNER_SPEED 0.05// (mm/sec)
  321.  
  322. // Microstep setting (Only functional when stepper driver microstep pins are connected to MCU.
  323. #define MICROSTEP_MODES {16,16,16,16,16} // [1,2,4,8,16]
  324.  
  325. // Motor Current setting (Only functional when motor driver current ref pins are connected to a digital trimpot on supported boards)
  326. #define DIGIPOT_MOTOR_CURRENT {135,135,135,135,135} // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A)
  327.  
  328. // Motor Current controlled via PWM (Overridable on supported boards with PWM-driven motor driver current)
  329. //#define PWM_MOTOR_CURRENT {1300, 1300, 1250} // Values in milliamps
  330.  
  331. // uncomment to enable an I2C based DIGIPOT like on the Azteeg X3 Pro
  332. //#define DIGIPOT_I2C
  333. // Number of channels available for I2C digipot, For Azteeg X3 Pro we have 8
  334. #define DIGIPOT_I2C_NUM_CHANNELS 8
  335. // actual motor currents in Amps, need as many here as DIGIPOT_I2C_NUM_CHANNELS
  336. #define DIGIPOT_I2C_MOTOR_CURRENTS {1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0}
  337.  
  338. //===========================================================================
  339. //=============================Additional Features===========================
  340. //===========================================================================
  341.  
  342. #define ENCODER_RATE_MULTIPLIER // If defined, certain menu edit operations automatically multiply the steps when the encoder is moved quickly
  343. #define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
  344. #define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
  345.  
  346. //#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
  347. #define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
  348.  
  349. // @section lcd
  350.  
  351. #if ENABLED(SDSUPPORT)
  352.  
  353. // Some RAMPS and other boards don't detect when an SD card is inserted. You can work
  354. // around this by connecting a push button or single throw switch to the pin defined
  355. // as SD_DETECT_PIN in your board's pins definitions.
  356. // This setting should be disabled unless you are using a push button, pulling the pin to ground.
  357. // Note: This is always disabled for ULTIPANEL (except ELB_FULL_GRAPHIC_CONTROLLER).
  358. #define SD_DETECT_INVERTED
  359.  
  360. #define SD_FINISHED_STEPPERRELEASE true //if sd support and the file is finished: disable steppers?
  361. #define SD_FINISHED_RELEASECOMMAND "M84 X Y Z E" // You might want to keep the z enabled so your bed stays in place.
  362.  
  363. #define SDCARD_RATHERRECENTFIRST //reverse file order of sd card menu display. Its sorted practically after the file system block order.
  364. // if a file is deleted, it frees a block. hence, the order is not purely chronological. To still have auto0.g accessible, there is again the option to do that.
  365. // using:
  366. //#define MENU_ADDAUTOSTART
  367.  
  368. // Show a progress bar on HD44780 LCDs for SD printing
  369. //#define LCD_PROGRESS_BAR
  370.  
  371. #if ENABLED(LCD_PROGRESS_BAR)
  372. // Amount of time (ms) to show the bar
  373. #define PROGRESS_BAR_BAR_TIME 2000
  374. // Amount of time (ms) to show the status message
  375. #define PROGRESS_BAR_MSG_TIME 3000
  376. // Amount of time (ms) to retain the status message (0=forever)
  377. #define PROGRESS_MSG_EXPIRE 0
  378. // Enable this to show messages for MSG_TIME then hide them
  379. //#define PROGRESS_MSG_ONCE
  380. #endif
  381.  
  382. // This allows hosts to request long names for files and folders with M33
  383. //#define LONG_FILENAME_HOST_SUPPORT
  384.  
  385. // This option allows you to abort SD printing when any endstop is triggered.
  386. // This feature must be enabled with "M540 S1" or from the LCD menu.
  387. // To have any effect, endstops must be enabled during SD printing.
  388. // With ENDSTOPS_ONLY_FOR_HOMING you must send "M120" to enable endstops.
  389. //#define ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  390.  
  391. #endif // SDSUPPORT
  392.  
  393. // for dogm lcd displays you can choose some additional fonts:
  394. #if ENABLED(DOGLCD)
  395. // save 3120 bytes of PROGMEM by commenting out #define USE_BIG_EDIT_FONT
  396. // we don't have a big font for Cyrillic, Kana
  397. //#define USE_BIG_EDIT_FONT
  398.  
  399. // If you have spare 2300Byte of progmem and want to use a
  400. // smaller font on the Info-screen uncomment the next line.
  401. //#define USE_SMALL_INFOFONT
  402. #endif // DOGLCD
  403.  
  404. // @section more
  405.  
  406. // The hardware watchdog should reset the microcontroller disabling all outputs, in case the firmware gets stuck and doesn't do temperature regulation.
  407. #define USE_WATCHDOG
  408.  
  409. #if ENABLED(USE_WATCHDOG)
  410. // If you have a watchdog reboot in an ArduinoMega2560 then the device will hang forever, as a watchdog reset will leave the watchdog on.
  411. // The "WATCHDOG_RESET_MANUAL" goes around this by not using the hardware reset.
  412. // However, THIS FEATURE IS UNSAFE!, as it will only work if interrupts are disabled. And the code could hang in an interrupt routine with interrupts disabled.
  413. //#define WATCHDOG_RESET_MANUAL
  414. #endif
  415.  
  416. // @section lcd
  417.  
  418. // Babystepping enables the user to control the axis in tiny amounts, independently from the normal printing process
  419. // it can e.g. be used to change z-positions in the print startup phase in real-time
  420. // does not respect endstops!
  421. //#define BABYSTEPPING
  422. #if ENABLED(BABYSTEPPING)
  423. #define BABYSTEP_XY //not only z, but also XY in the menu. more clutter, more functions
  424. //not implemented for deltabots!
  425. #define BABYSTEP_INVERT_Z false //true for inverse movements in Z
  426. #define BABYSTEP_MULTIPLICATOR 1 //faster movements
  427. #endif
  428.  
  429. // @section extruder
  430.  
  431. // extruder advance constant (s2/mm3)
  432. //
  433. // advance (steps) = STEPS_PER_CUBIC_MM_E * EXTRUDER_ADVANCE_K * cubic mm per second ^ 2
  434. //
  435. // Hooke's law says: force = k * distance
  436. // Bernoulli's principle says: v ^ 2 / 2 + g . h + pressure / density = constant
  437. // so: v ^ 2 is proportional to number of steps we advance the extruder
  438. //#define ADVANCE
  439.  
  440. #if ENABLED(ADVANCE)
  441. #define EXTRUDER_ADVANCE_K .0
  442. #define D_FILAMENT 2.85
  443. #endif
  444.  
  445. // @section extras
  446.  
  447. // Arc interpretation settings:
  448. #define MM_PER_ARC_SEGMENT 1
  449. #define N_ARC_CORRECTION 25
  450.  
  451. const unsigned int dropsegments = 5; //everything with less than this number of steps will be ignored as move and joined with the next movement
  452.  
  453. // @section temperature
  454.  
  455. // Control heater 0 and heater 1 in parallel.
  456. //#define HEATERS_PARALLEL
  457.  
  458. //===========================================================================
  459. //================================= Buffers =================================
  460. //===========================================================================
  461.  
  462. // @section hidden
  463.  
  464. // The number of linear motions that can be in the plan at any give time.
  465. // THE BLOCK_BUFFER_SIZE NEEDS TO BE A POWER OF 2, i.g. 8,16,32 because shifts and ors are used to do the ring-buffering.
  466. #if ENABLED(SDSUPPORT)
  467. #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
  468. #else
  469. #define BLOCK_BUFFER_SIZE 16 // maximize block buffer
  470. #endif
  471.  
  472. // @section more
  473.  
  474. //The ASCII buffer for receiving from the serial:
  475. #define MAX_CMD_SIZE 96
  476. #define BUFSIZE 4
  477.  
  478. // Bad Serial-connections can miss a received command by sending an 'ok'
  479. // Therefore some clients abort after 30 seconds in a timeout.
  480. // Some other clients start sending commands while receiving a 'wait'.
  481. // This "wait" is only sent when the buffer is empty. 1 second is a good value here.
  482. //#define NO_TIMEOUTS 1000 // Milliseconds
  483.  
  484. // Some clients will have this feature soon. This could make the NO_TIMEOUTS unnecessary.
  485. //#define ADVANCED_OK
  486.  
  487. // @section fwretract
  488.  
  489. // Firmware based and LCD controlled retract
  490. // M207 and M208 can be used to define parameters for the retraction.
  491. // The retraction can be called by the slicer using G10 and G11
  492. // until then, intended retractions can be detected by moves that only extrude and the direction.
  493. // the moves are than replaced by the firmware controlled ones.
  494.  
  495. //#define FWRETRACT //ONLY PARTIALLY TESTED
  496. #if ENABLED(FWRETRACT)
  497. #define MIN_RETRACT 0.1 //minimum extruded mm to accept a automatic gcode retraction attempt
  498. #define RETRACT_LENGTH 3 //default retract length (positive mm)
  499. #define RETRACT_LENGTH_SWAP 13 //default swap retract length (positive mm), for extruder change
  500. #define RETRACT_FEEDRATE 45 //default feedrate for retracting (mm/s)
  501. #define RETRACT_ZLIFT 0 //default retract Z-lift
  502. #define RETRACT_RECOVER_LENGTH 0 //default additional recover length (mm, added to retract length when recovering)
  503. #define RETRACT_RECOVER_LENGTH_SWAP 0 //default additional swap recover length (mm, added to retract length when recovering from extruder change)
  504. #define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
  505. #endif
  506.  
  507. // Add support for experimental filament exchange support M600; requires display
  508. #if ENABLED(ULTIPANEL)
  509. //#define FILAMENTCHANGEENABLE
  510. #if ENABLED(FILAMENTCHANGEENABLE)
  511. #define FILAMENTCHANGE_XPOS 3
  512. #define FILAMENTCHANGE_YPOS 3
  513. #define FILAMENTCHANGE_ZADD 10
  514. #define FILAMENTCHANGE_FIRSTRETRACT -2
  515. #define FILAMENTCHANGE_FINALRETRACT -100
  516. #define AUTO_FILAMENT_CHANGE //This extrude filament until you press the button on LCD
  517. #define AUTO_FILAMENT_CHANGE_LENGTH 0.04 //Extrusion length on automatic extrusion loop
  518. #define AUTO_FILAMENT_CHANGE_FEEDRATE 300 //Extrusion feedrate (mm/min) on automatic extrusion loop
  519. #endif
  520. #endif
  521.  
  522. /******************************************************************************\
  523. * enable this section if you have TMC26X motor drivers.
  524. * you need to import the TMC26XStepper library into the Arduino IDE for this
  525. ******************************************************************************/
  526.  
  527. // @section tmc
  528.  
  529. //#define HAVE_TMCDRIVER
  530. #if ENABLED(HAVE_TMCDRIVER)
  531.  
  532. //#define X_IS_TMC
  533. #define X_MAX_CURRENT 1000 //in mA
  534. #define X_SENSE_RESISTOR 91 //in mOhms
  535. #define X_MICROSTEPS 16 //number of microsteps
  536.  
  537. //#define X2_IS_TMC
  538. #define X2_MAX_CURRENT 1000 //in mA
  539. #define X2_SENSE_RESISTOR 91 //in mOhms
  540. #define X2_MICROSTEPS 16 //number of microsteps
  541.  
  542. //#define Y_IS_TMC
  543. #define Y_MAX_CURRENT 1000 //in mA
  544. #define Y_SENSE_RESISTOR 91 //in mOhms
  545. #define Y_MICROSTEPS 16 //number of microsteps
  546.  
  547. //#define Y2_IS_TMC
  548. #define Y2_MAX_CURRENT 1000 //in mA
  549. #define Y2_SENSE_RESISTOR 91 //in mOhms
  550. #define Y2_MICROSTEPS 16 //number of microsteps
  551.  
  552. //#define Z_IS_TMC
  553. #define Z_MAX_CURRENT 1000 //in mA
  554. #define Z_SENSE_RESISTOR 91 //in mOhms
  555. #define Z_MICROSTEPS 16 //number of microsteps
  556.  
  557. //#define Z2_IS_TMC
  558. #define Z2_MAX_CURRENT 1000 //in mA
  559. #define Z2_SENSE_RESISTOR 91 //in mOhms
  560. #define Z2_MICROSTEPS 16 //number of microsteps
  561.  
  562. //#define E0_IS_TMC
  563. #define E0_MAX_CURRENT 1000 //in mA
  564. #define E0_SENSE_RESISTOR 91 //in mOhms
  565. #define E0_MICROSTEPS 16 //number of microsteps
  566.  
  567. //#define E1_IS_TMC
  568. #define E1_MAX_CURRENT 1000 //in mA
  569. #define E1_SENSE_RESISTOR 91 //in mOhms
  570. #define E1_MICROSTEPS 16 //number of microsteps
  571.  
  572. //#define E2_IS_TMC
  573. #define E2_MAX_CURRENT 1000 //in mA
  574. #define E2_SENSE_RESISTOR 91 //in mOhms
  575. #define E2_MICROSTEPS 16 //number of microsteps
  576.  
  577. //#define E3_IS_TMC
  578. #define E3_MAX_CURRENT 1000 //in mA
  579. #define E3_SENSE_RESISTOR 91 //in mOhms
  580. #define E3_MICROSTEPS 16 //number of microsteps
  581.  
  582. #endif
  583.  
  584. /******************************************************************************\
  585. * enable this section if you have L6470 motor drivers.
  586. * you need to import the L6470 library into the Arduino IDE for this
  587. ******************************************************************************/
  588.  
  589. // @section l6470
  590.  
  591. //#define HAVE_L6470DRIVER
  592. #if ENABLED(HAVE_L6470DRIVER)
  593.  
  594. //#define X_IS_L6470
  595. #define X_MICROSTEPS 16 //number of microsteps
  596. #define X_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  597. #define X_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  598. #define X_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  599.  
  600. //#define X2_IS_L6470
  601. #define X2_MICROSTEPS 16 //number of microsteps
  602. #define X2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  603. #define X2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  604. #define X2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  605.  
  606. //#define Y_IS_L6470
  607. #define Y_MICROSTEPS 16 //number of microsteps
  608. #define Y_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  609. #define Y_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  610. #define Y_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  611.  
  612. //#define Y2_IS_L6470
  613. #define Y2_MICROSTEPS 16 //number of microsteps
  614. #define Y2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  615. #define Y2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  616. #define Y2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  617.  
  618. //#define Z_IS_L6470
  619. #define Z_MICROSTEPS 16 //number of microsteps
  620. #define Z_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  621. #define Z_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  622. #define Z_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  623.  
  624. //#define Z2_IS_L6470
  625. #define Z2_MICROSTEPS 16 //number of microsteps
  626. #define Z2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  627. #define Z2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  628. #define Z2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  629.  
  630. //#define E0_IS_L6470
  631. #define E0_MICROSTEPS 16 //number of microsteps
  632. #define E0_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  633. #define E0_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  634. #define E0_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  635.  
  636. //#define E1_IS_L6470
  637. #define E1_MICROSTEPS 16 //number of microsteps
  638. #define E1_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  639. #define E1_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  640. #define E1_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  641.  
  642. //#define E2_IS_L6470
  643. #define E2_MICROSTEPS 16 //number of microsteps
  644. #define E2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  645. #define E2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  646. #define E2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  647.  
  648. //#define E3_IS_L6470
  649. #define E3_MICROSTEPS 16 //number of microsteps
  650. #define E3_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
  651. #define E3_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
  652. #define E3_STALLCURRENT 1500 //current in mA where the driver will detect a stall
  653.  
  654. #endif
  655.  
  656. /**
  657. * TWI/I2C BUS
  658. *
  659. * This feature is an EXPERIMENTAL feature so it shall not be used on production
  660. * machines. Enabling this will allow you to send and receive I2C data from slave
  661. * devices on the bus.
  662. *
  663. * ; Example #1
  664. * ; This macro send the string "Marlin" to the slave device with address 0x63
  665. * ; It uses multiple M155 commands with one B<base 10> arg
  666. * M155 A63 ; Target slave address
  667. * M155 B77 ; M
  668. * M155 B97 ; a
  669. * M155 B114 ; r
  670. * M155 B108 ; l
  671. * M155 B105 ; i
  672. * M155 B110 ; n
  673. * M155 S1 ; Send the current buffer
  674. *
  675. * ; Example #2
  676. * ; Request 6 bytes from slave device with address 0x63
  677. * M156 A63 B5
  678. *
  679. * ; Example #3
  680. * ; Example serial output of a M156 request
  681. * echo:i2c-reply: from:63 bytes:5 data:hello
  682. */
  683.  
  684. // @section i2cbus
  685.  
  686. //#define EXPERIMENTAL_I2CBUS
  687.  
  688. #include "Conditionals.h"
  689. #include "SanityCheck.h"
  690.  
  691. #endif //CONFIGURATION_ADV_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement