My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Conditionals.h 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753
  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. * Conditionals.h
  24. * Defines that depend on configuration but are not editable.
  25. */
  26. #ifndef CONDITIONALS_H
  27. /**
  28. * Miscellaneous
  29. */
  30. #ifndef M_PI
  31. #define M_PI 3.1415926536
  32. #endif
  33. /**
  34. * This value is used by M109 when tying to calculate a ballpark safe margin
  35. * to prevent wait-forever situation.
  36. */
  37. #ifndef EXTRUDE_MINTEMP
  38. #define EXTRUDE_MINTEMP 170
  39. #endif
  40. #ifndef CONFIGURATION_LCD // Get the LCD defines which are needed first
  41. #define CONFIGURATION_LCD
  42. #if ENABLED(MAKRPANEL)
  43. #define DOGLCD
  44. #define DEFAULT_LCD_CONTRAST 17
  45. #define ULTIPANEL
  46. #define NEWPANEL
  47. #endif
  48. #if ENABLED(miniVIKI) || ENABLED(VIKI2) || ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
  49. #define ULTRA_LCD //general LCD support, also 16x2
  50. #define DOGLCD // Support for SPI LCD 128x64 (Controller ST7565R graphic Display Family)
  51. #define ULTIMAKERCONTROLLER //as available from the Ultimaker online store.
  52. #if ENABLED(miniVIKI)
  53. #define DEFAULT_LCD_CONTRAST 95
  54. #elif ENABLED(VIKI2)
  55. #define DEFAULT_LCD_CONTRAST 40
  56. #elif ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
  57. #define DEFAULT_LCD_CONTRAST 110
  58. #define U8GLIB_LM6059_AF
  59. #define SD_DETECT_INVERTED
  60. #endif
  61. #define ENCODER_PULSES_PER_STEP 4
  62. #define ENCODER_STEPS_PER_MENU_ITEM 1
  63. #endif
  64. // Generic support for SSD1306 OLED based LCDs.
  65. #if ENABLED(U8GLIB_SSD1306)
  66. #define ULTRA_LCD //general LCD support, also 16x2
  67. #define DOGLCD // Support for I2C LCD 128x64 (Controller SSD1306 graphic Display Family)
  68. #endif
  69. #if ENABLED(PANEL_ONE)
  70. #define ULTIMAKERCONTROLLER
  71. #endif
  72. #if ENABLED(BQ_LCD_SMART_CONTROLLER)
  73. #define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
  74. #ifndef ENCODER_PULSES_PER_STEP
  75. #define ENCODER_PULSES_PER_STEP 4
  76. #endif
  77. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  78. #define ENCODER_STEPS_PER_MENU_ITEM 1
  79. #endif
  80. #ifndef LONG_FILENAME_HOST_SUPPORT
  81. #define LONG_FILENAME_HOST_SUPPORT
  82. #endif
  83. #endif
  84. #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
  85. #define DOGLCD
  86. #define U8GLIB_ST7920
  87. #define REPRAP_DISCOUNT_SMART_CONTROLLER
  88. #endif
  89. #if ENABLED(ULTIMAKERCONTROLLER) || ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) || ENABLED(G3D_PANEL) || ENABLED(RIGIDBOT_PANEL)
  90. #define ULTIPANEL
  91. #define NEWPANEL
  92. #endif
  93. #if ENABLED(REPRAPWORLD_KEYPAD)
  94. #define ULTIPANEL
  95. #define NEWPANEL
  96. #endif
  97. #if ENABLED(RA_CONTROL_PANEL)
  98. #define LCD_I2C_TYPE_PCA8574
  99. #define LCD_I2C_ADDRESS 0x27 // I2C Address of the port expander
  100. #define ULTIPANEL
  101. #define NEWPANEL
  102. #endif
  103. #if ENABLED(MINIPANEL)
  104. #define DOGLCD
  105. #define ULTIPANEL
  106. #define NEWPANEL
  107. #define DEFAULT_LCD_CONTRAST 17
  108. #endif
  109. /**
  110. * I2C PANELS
  111. */
  112. #if ENABLED(LCD_I2C_SAINSMART_YWROBOT)
  113. // This uses the LiquidCrystal_I2C library ( https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home )
  114. // Make sure it is placed in the Arduino libraries directory.
  115. #define LCD_I2C_TYPE_PCF8575
  116. #define LCD_I2C_ADDRESS 0x27 // I2C Address of the port expander
  117. #define ULTIPANEL
  118. #define NEWPANEL
  119. #endif
  120. // PANELOLU2 LCD with status LEDs, separate encoder and click inputs
  121. #if ENABLED(LCD_I2C_PANELOLU2)
  122. #define LCD_I2C_TYPE_MCP23017
  123. #define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander
  124. #define LCD_USE_I2C_BUZZER //comment out to disable buzzer on LCD
  125. #ifndef ENCODER_PULSES_PER_STEP
  126. #define ENCODER_PULSES_PER_STEP 4
  127. #endif
  128. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  129. #define ENCODER_STEPS_PER_MENU_ITEM 1
  130. #endif
  131. #if ENABLED(LCD_USE_I2C_BUZZER)
  132. #define LCD_FEEDBACK_FREQUENCY_HZ 1000
  133. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS 100
  134. #endif
  135. #define ULTIPANEL
  136. #define NEWPANEL
  137. #endif
  138. // Panucatt VIKI LCD with status LEDs, integrated click & L/R/U/P buttons, separate encoder inputs
  139. #if ENABLED(LCD_I2C_VIKI)
  140. // This uses the LiquidTWI2 library v1.2.3 or later ( https://github.com/lincomatic/LiquidTWI2 )
  141. // Make sure the LiquidTWI2 directory is placed in the Arduino or Sketchbook libraries subdirectory.
  142. // Note: The pause/stop/resume LCD button pin should be connected to the Arduino
  143. // BTN_ENC pin (or set BTN_ENC to -1 if not used)
  144. #define LCD_I2C_TYPE_MCP23017
  145. #define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander
  146. #define LCD_USE_I2C_BUZZER //comment out to disable buzzer on LCD (requires LiquidTWI2 v1.2.3 or later)
  147. #define ULTIPANEL
  148. #define NEWPANEL
  149. #endif
  150. // Shift register panels
  151. // ---------------------
  152. // 2 wire Non-latching LCD SR from:
  153. // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
  154. #if ENABLED(SAV_3DLCD)
  155. #define SR_LCD_2W_NL // Non latching 2 wire shift register
  156. #define ULTIPANEL
  157. #define NEWPANEL
  158. #endif
  159. #if ENABLED(DOGLCD) // Change number of lines to match the DOG graphic display
  160. #ifndef LCD_WIDTH
  161. #define LCD_WIDTH 22
  162. #endif
  163. #ifndef LCD_HEIGHT
  164. #define LCD_HEIGHT 5
  165. #endif
  166. #endif
  167. #if ENABLED(ULTIPANEL)
  168. #define NEWPANEL //enable this if you have a click-encoder panel
  169. #define ULTRA_LCD
  170. #ifndef LCD_WIDTH
  171. #define LCD_WIDTH 20
  172. #endif
  173. #ifndef LCD_HEIGHT
  174. #define LCD_HEIGHT 4
  175. #endif
  176. #else //no panel but just LCD
  177. #if ENABLED(ULTRA_LCD)
  178. #ifndef LCD_WIDTH
  179. #define LCD_WIDTH 16
  180. #endif
  181. #ifndef LCD_HEIGHT
  182. #define LCD_HEIGHT 2
  183. #endif
  184. #endif
  185. #endif
  186. #if ENABLED(DOGLCD)
  187. /* Custom characters defined in font dogm_font_data_Marlin_symbols.h / Marlin_symbols.fon */
  188. // \x00 intentionally skipped to avoid problems in strings
  189. #define LCD_STR_REFRESH "\x01"
  190. #define LCD_STR_FOLDER "\x02"
  191. #define LCD_STR_ARROW_RIGHT "\x03"
  192. #define LCD_STR_UPLEVEL "\x04"
  193. #define LCD_STR_CLOCK "\x05"
  194. #define LCD_STR_FEEDRATE "\x06"
  195. #define LCD_STR_BEDTEMP "\x07"
  196. #define LCD_STR_THERMOMETER "\x08"
  197. #define LCD_STR_DEGREE "\x09"
  198. #define LCD_STR_SPECIAL_MAX '\x09'
  199. // Maximum here is 0x1f because 0x20 is ' ' (space) and the normal charsets begin.
  200. // Better stay below 0x10 because DISPLAY_CHARSET_HD44780_WESTERN begins here.
  201. #else
  202. /* Custom characters defined in the first 8 characters of the LCD */
  203. #define LCD_STR_BEDTEMP "\x00" // Print only as a char. This will have 'unexpected' results when used in a string!
  204. #define LCD_STR_DEGREE "\x01"
  205. #define LCD_STR_THERMOMETER "\x02"
  206. #define LCD_STR_UPLEVEL "\x03"
  207. #define LCD_STR_REFRESH "\x04"
  208. #define LCD_STR_FOLDER "\x05"
  209. #define LCD_STR_FEEDRATE "\x06"
  210. #define LCD_STR_CLOCK "\x07"
  211. #define LCD_STR_ARROW_RIGHT ">" /* from the default character set */
  212. #endif
  213. /**
  214. * Default LCD contrast for dogm-like LCD displays
  215. */
  216. #if ENABLED(DOGLCD) && DISABLED(DEFAULT_LCD_CONTRAST)
  217. #define DEFAULT_LCD_CONTRAST 32
  218. #endif
  219. #if ENABLED(DOGLCD)
  220. #define HAS_LCD_CONTRAST
  221. #if ENABLED(U8GLIB_ST7920)
  222. #undef HAS_LCD_CONTRAST
  223. #endif
  224. #if ENABLED(U8GLIB_SSD1306)
  225. #undef HAS_LCD_CONTRAST
  226. #endif
  227. #endif
  228. #else // CONFIGURATION_LCD
  229. #define CONDITIONALS_H
  230. #include "pins.h"
  231. #ifndef USBCON
  232. #define HardwareSerial_h // trick to disable the standard HWserial
  233. #endif
  234. #include "Arduino.h"
  235. /**
  236. * Set ENDSTOPPULLUPS for unused endstop switches
  237. */
  238. #if ENABLED(ENDSTOPPULLUPS)
  239. #if ENABLED(USE_XMAX_PLUG)
  240. #define ENDSTOPPULLUP_XMAX
  241. #endif
  242. #if ENABLED(USE_YMAX_PLUG)
  243. #define ENDSTOPPULLUP_YMAX
  244. #endif
  245. #if ENABLED(USE_ZMAX_PLUG)
  246. #define ENDSTOPPULLUP_ZMAX
  247. #endif
  248. #if ENABLED(USE_XMIN_PLUG)
  249. #define ENDSTOPPULLUP_XMIN
  250. #endif
  251. #if ENABLED(USE_YMIN_PLUG)
  252. #define ENDSTOPPULLUP_YMIN
  253. #endif
  254. #if ENABLED(USE_ZMIN_PLUG)
  255. #define ENDSTOPPULLUP_ZMIN
  256. #endif
  257. #if DISABLED(DISABLE_Z_MIN_PROBE_ENDSTOP)
  258. #define ENDSTOPPULLUP_ZMIN_PROBE
  259. #endif
  260. #endif
  261. /**
  262. * Axis lengths
  263. */
  264. #define X_MAX_LENGTH (X_MAX_POS - (X_MIN_POS))
  265. #define Y_MAX_LENGTH (Y_MAX_POS - (Y_MIN_POS))
  266. #define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
  267. /**
  268. * CoreXY and CoreXZ
  269. */
  270. #if ENABLED(COREXY)
  271. #define CORE_AXIS_2 B_AXIS
  272. #define CORE_AXIS_3 Z_AXIS
  273. #elif ENABLED(COREXZ)
  274. #define CORE_AXIS_2 C_AXIS
  275. #define CORE_AXIS_3 Y_AXIS
  276. #endif
  277. /**
  278. * SCARA
  279. */
  280. #if ENABLED(SCARA)
  281. #undef SLOWDOWN
  282. #define QUICK_HOME //SCARA needs Quickhome
  283. #endif
  284. /**
  285. * AUTOSET LOCATIONS OF LIMIT SWITCHES
  286. */
  287. #if ENABLED(MANUAL_HOME_POSITIONS) // Use manual limit switch locations
  288. #define X_HOME_POS MANUAL_X_HOME_POS
  289. #define Y_HOME_POS MANUAL_Y_HOME_POS
  290. #define Z_HOME_POS MANUAL_Z_HOME_POS
  291. #else //!MANUAL_HOME_POSITIONS – Use home switch positions based on homing direction and travel limits
  292. #if ENABLED(BED_CENTER_AT_0_0)
  293. #define X_HOME_POS (X_MAX_LENGTH) * (X_HOME_DIR) * 0.5
  294. #define Y_HOME_POS (Y_MAX_LENGTH) * (Y_HOME_DIR) * 0.5
  295. #else
  296. #define X_HOME_POS (X_HOME_DIR < 0 ? X_MIN_POS : X_MAX_POS)
  297. #define Y_HOME_POS (Y_HOME_DIR < 0 ? Y_MIN_POS : Y_MAX_POS)
  298. #endif
  299. #define Z_HOME_POS (Z_HOME_DIR < 0 ? Z_MIN_POS : Z_MAX_POS)
  300. #endif //!MANUAL_HOME_POSITIONS
  301. /**
  302. * Auto Bed Leveling
  303. */
  304. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  305. // Boundaries for probing based on set limits
  306. #define MIN_PROBE_X (max(X_MIN_POS, X_MIN_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
  307. #define MAX_PROBE_X (min(X_MAX_POS, X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER))
  308. #define MIN_PROBE_Y (max(Y_MIN_POS, Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
  309. #define MAX_PROBE_Y (min(Y_MAX_POS, Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
  310. #endif
  311. #define HAS_Z_ENDSTOP_SERVO (defined(Z_ENDSTOP_SERVO_NR) && Z_ENDSTOP_SERVO_NR >= 0)
  312. #define SERVO_LEVELING (ENABLED(AUTO_BED_LEVELING_FEATURE) && HAS_Z_ENDSTOP_SERVO)
  313. /**
  314. * Sled Options
  315. */
  316. #if ENABLED(Z_PROBE_SLED)
  317. #define Z_SAFE_HOMING
  318. #endif
  319. /**
  320. * Z Safe Homing dependencies
  321. */
  322. #if ENABLED(Z_SAFE_HOMING)
  323. #ifndef X_PROBE_OFFSET_FROM_EXTRUDER
  324. #define X_PROBE_OFFSET_FROM_EXTRUDER 0
  325. #endif
  326. #ifndef Y_PROBE_OFFSET_FROM_EXTRUDER
  327. #define Y_PROBE_OFFSET_FROM_EXTRUDER 0
  328. #endif
  329. #ifndef Z_PROBE_OFFSET_FROM_EXTRUDER
  330. #define Z_PROBE_OFFSET_FROM_EXTRUDER 0
  331. #endif
  332. #ifndef XY_TRAVEL_SPEED
  333. #define XY_TRAVEL_SPEED 4000
  334. #endif
  335. #endif
  336. /**
  337. * Enable MECHANICAL_PROBE for Z_PROBE_ALLEN_KEY, for older configs
  338. */
  339. #if ENABLED(Z_PROBE_ALLEN_KEY)
  340. #define MECHANICAL_PROBE
  341. #endif
  342. /**
  343. * Avoid double-negatives for enabling features
  344. */
  345. #if DISABLED(DISABLE_HOST_KEEPALIVE)
  346. #define HOST_KEEPALIVE_FEATURE
  347. #endif
  348. /**
  349. * MAX_STEP_FREQUENCY differs for TOSHIBA
  350. */
  351. #if ENABLED(CONFIG_STEPPERS_TOSHIBA)
  352. #define MAX_STEP_FREQUENCY 10000 // Max step frequency for Toshiba Stepper Controllers
  353. #else
  354. #define MAX_STEP_FREQUENCY 40000 // Max step frequency for Ultimaker (5000 pps / half step)
  355. #endif
  356. // MS1 MS2 Stepper Driver Microstepping mode table
  357. #define MICROSTEP1 LOW,LOW
  358. #define MICROSTEP2 HIGH,LOW
  359. #define MICROSTEP4 LOW,HIGH
  360. #define MICROSTEP8 HIGH,HIGH
  361. #define MICROSTEP16 HIGH,HIGH
  362. /**
  363. * Advance calculated values
  364. */
  365. #if ENABLED(ADVANCE)
  366. #define EXTRUSION_AREA (0.25 * (D_FILAMENT) * (D_FILAMENT) * M_PI)
  367. #define STEPS_PER_CUBIC_MM_E (axis_steps_per_unit[E_AXIS] / (EXTRUSION_AREA))
  368. #endif
  369. #if ENABLED(ULTIPANEL) && DISABLED(ELB_FULL_GRAPHIC_CONTROLLER)
  370. #undef SD_DETECT_INVERTED
  371. #endif
  372. /**
  373. * Set defaults for missing (newer) options
  374. */
  375. #ifndef DISABLE_INACTIVE_X
  376. #define DISABLE_INACTIVE_X DISABLE_X
  377. #endif
  378. #ifndef DISABLE_INACTIVE_Y
  379. #define DISABLE_INACTIVE_Y DISABLE_Y
  380. #endif
  381. #ifndef DISABLE_INACTIVE_Z
  382. #define DISABLE_INACTIVE_Z DISABLE_Z
  383. #endif
  384. #ifndef DISABLE_INACTIVE_E
  385. #define DISABLE_INACTIVE_E DISABLE_E
  386. #endif
  387. // Power Signal Control Definitions
  388. // By default use ATX definition
  389. #ifndef POWER_SUPPLY
  390. #define POWER_SUPPLY 1
  391. #endif
  392. #if (POWER_SUPPLY == 1) // 1 = ATX
  393. #define PS_ON_AWAKE LOW
  394. #define PS_ON_ASLEEP HIGH
  395. #elif (POWER_SUPPLY == 2) // 2 = X-Box 360 203W
  396. #define PS_ON_AWAKE HIGH
  397. #define PS_ON_ASLEEP LOW
  398. #endif
  399. #define HAS_POWER_SWITCH (POWER_SUPPLY > 0 && PIN_EXISTS(PS_ON))
  400. /**
  401. * Temp Sensor defines
  402. */
  403. #if TEMP_SENSOR_0 == -3
  404. #define HEATER_0_USES_MAX6675
  405. #define MAX6675_IS_MAX31855
  406. #elif TEMP_SENSOR_0 == -2
  407. #define HEATER_0_USES_MAX6675
  408. #elif TEMP_SENSOR_0 == -1
  409. #define HEATER_0_USES_AD595
  410. #elif TEMP_SENSOR_0 == 0
  411. #undef HEATER_0_MINTEMP
  412. #undef HEATER_0_MAXTEMP
  413. #elif TEMP_SENSOR_0 > 0
  414. #define THERMISTORHEATER_0 TEMP_SENSOR_0
  415. #define HEATER_0_USES_THERMISTOR
  416. #endif
  417. #if TEMP_SENSOR_1 <= -2
  418. #error MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_1
  419. #elif TEMP_SENSOR_1 == -1
  420. #define HEATER_1_USES_AD595
  421. #elif TEMP_SENSOR_1 == 0
  422. #undef HEATER_1_MINTEMP
  423. #undef HEATER_1_MAXTEMP
  424. #elif TEMP_SENSOR_1 > 0
  425. #define THERMISTORHEATER_1 TEMP_SENSOR_1
  426. #define HEATER_1_USES_THERMISTOR
  427. #endif
  428. #if TEMP_SENSOR_2 <= -2
  429. #error MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_2
  430. #elif TEMP_SENSOR_2 == -1
  431. #define HEATER_2_USES_AD595
  432. #elif TEMP_SENSOR_2 == 0
  433. #undef HEATER_2_MINTEMP
  434. #undef HEATER_2_MAXTEMP
  435. #elif TEMP_SENSOR_2 > 0
  436. #define THERMISTORHEATER_2 TEMP_SENSOR_2
  437. #define HEATER_2_USES_THERMISTOR
  438. #endif
  439. #if TEMP_SENSOR_3 <= -2
  440. #error MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_3
  441. #elif TEMP_SENSOR_3 == -1
  442. #define HEATER_3_USES_AD595
  443. #elif TEMP_SENSOR_3 == 0
  444. #undef HEATER_3_MINTEMP
  445. #undef HEATER_3_MAXTEMP
  446. #elif TEMP_SENSOR_3 > 0
  447. #define THERMISTORHEATER_3 TEMP_SENSOR_3
  448. #define HEATER_3_USES_THERMISTOR
  449. #endif
  450. #if TEMP_SENSOR_BED <= -2
  451. #error MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_BED
  452. #elif TEMP_SENSOR_BED == -1
  453. #define BED_USES_AD595
  454. #elif TEMP_SENSOR_BED == 0
  455. #undef BED_MINTEMP
  456. #undef BED_MAXTEMP
  457. #elif TEMP_SENSOR_BED > 0
  458. #define THERMISTORBED TEMP_SENSOR_BED
  459. #define BED_USES_THERMISTOR
  460. #endif
  461. /**
  462. * Flags for PID handling
  463. */
  464. #define HAS_PID_HEATING (ENABLED(PIDTEMP) || ENABLED(PIDTEMPBED))
  465. #define HAS_PID_FOR_BOTH (ENABLED(PIDTEMP) && ENABLED(PIDTEMPBED))
  466. /**
  467. * ARRAY_BY_EXTRUDERS based on EXTRUDERS
  468. */
  469. #if EXTRUDERS > 3
  470. #define ARRAY_BY_EXTRUDERS(v1, v2, v3, v4) { v1, v2, v3, v4 }
  471. #elif EXTRUDERS > 2
  472. #define ARRAY_BY_EXTRUDERS(v1, v2, v3, v4) { v1, v2, v3 }
  473. #elif EXTRUDERS > 1
  474. #define ARRAY_BY_EXTRUDERS(v1, v2, v3, v4) { v1, v2 }
  475. #else
  476. #define ARRAY_BY_EXTRUDERS(v1, v2, v3, v4) { v1 }
  477. #endif
  478. #define ARRAY_BY_EXTRUDERS1(v1) ARRAY_BY_EXTRUDERS(v1, v1, v1, v1)
  479. /**
  480. * Z_DUAL_ENDSTOPS endstop reassignment
  481. */
  482. #if ENABLED(Z_DUAL_ENDSTOPS)
  483. #define _XMIN_ 100
  484. #define _YMIN_ 200
  485. #define _ZMIN_ 300
  486. #define _XMAX_ 101
  487. #define _YMAX_ 201
  488. #define _ZMAX_ 301
  489. const bool Z2_MAX_ENDSTOP_INVERTING =
  490. #if Z2_USE_ENDSTOP == _XMAX_
  491. X_MAX_ENDSTOP_INVERTING
  492. #define Z2_MAX_PIN X_MAX_PIN
  493. #undef USE_XMAX_PLUG
  494. #elif Z2_USE_ENDSTOP == _YMAX_
  495. Y_MAX_ENDSTOP_INVERTING
  496. #define Z2_MAX_PIN Y_MAX_PIN
  497. #undef USE_YMAX_PLUG
  498. #elif Z2_USE_ENDSTOP == _ZMAX_
  499. Z_MAX_ENDSTOP_INVERTING
  500. #define Z2_MAX_PIN Z_MAX_PIN
  501. #undef USE_ZMAX_PLUG
  502. #elif Z2_USE_ENDSTOP == _XMIN_
  503. X_MIN_ENDSTOP_INVERTING
  504. #define Z2_MAX_PIN X_MIN_PIN
  505. #undef USE_XMIN_PLUG
  506. #elif Z2_USE_ENDSTOP == _YMIN_
  507. Y_MIN_ENDSTOP_INVERTING
  508. #define Z2_MAX_PIN Y_MIN_PIN
  509. #undef USE_YMIN_PLUG
  510. #elif Z2_USE_ENDSTOP == _ZMIN_
  511. Z_MIN_ENDSTOP_INVERTING
  512. #define Z2_MAX_PIN Z_MIN_PIN
  513. #undef USE_ZMIN_PLUG
  514. #else
  515. 0
  516. #endif
  517. ;
  518. #endif
  519. /**
  520. * Shorthand for pin tests, used wherever needed
  521. */
  522. #define HAS_TEMP_0 (PIN_EXISTS(TEMP_0) && TEMP_SENSOR_0 != 0 && TEMP_SENSOR_0 > -2)
  523. #define HAS_TEMP_1 (PIN_EXISTS(TEMP_1) && TEMP_SENSOR_1 != 0 && TEMP_SENSOR_1 > -2)
  524. #define HAS_TEMP_2 (PIN_EXISTS(TEMP_2) && TEMP_SENSOR_2 != 0 && TEMP_SENSOR_2 > -2)
  525. #define HAS_TEMP_3 (PIN_EXISTS(TEMP_3) && TEMP_SENSOR_3 != 0 && TEMP_SENSOR_3 > -2)
  526. #define HAS_TEMP_BED (PIN_EXISTS(TEMP_BED) && TEMP_SENSOR_BED != 0 && TEMP_SENSOR_BED > -2)
  527. #define HAS_HEATER_0 (PIN_EXISTS(HEATER_0))
  528. #define HAS_HEATER_1 (PIN_EXISTS(HEATER_1))
  529. #define HAS_HEATER_2 (PIN_EXISTS(HEATER_2))
  530. #define HAS_HEATER_3 (PIN_EXISTS(HEATER_3))
  531. #define HAS_HEATER_BED (PIN_EXISTS(HEATER_BED))
  532. #define HAS_AUTO_FAN_0 (PIN_EXISTS(EXTRUDER_0_AUTO_FAN))
  533. #define HAS_AUTO_FAN_1 (PIN_EXISTS(EXTRUDER_1_AUTO_FAN))
  534. #define HAS_AUTO_FAN_2 (PIN_EXISTS(EXTRUDER_2_AUTO_FAN))
  535. #define HAS_AUTO_FAN_3 (PIN_EXISTS(EXTRUDER_3_AUTO_FAN))
  536. #define HAS_AUTO_FAN (HAS_AUTO_FAN_0 || HAS_AUTO_FAN_1 || HAS_AUTO_FAN_2 || HAS_AUTO_FAN_3)
  537. #define HAS_FAN0 (PIN_EXISTS(FAN))
  538. #define HAS_FAN1 (PIN_EXISTS(FAN1) && CONTROLLERFAN_PIN != FAN1_PIN && EXTRUDER_0_AUTO_FAN_PIN != FAN1_PIN && EXTRUDER_1_AUTO_FAN_PIN != FAN1_PIN && EXTRUDER_2_AUTO_FAN_PIN != FAN1_PIN)
  539. #define HAS_FAN2 (PIN_EXISTS(FAN2) && CONTROLLERFAN_PIN != FAN2_PIN && EXTRUDER_0_AUTO_FAN_PIN != FAN2_PIN && EXTRUDER_1_AUTO_FAN_PIN != FAN2_PIN && EXTRUDER_2_AUTO_FAN_PIN != FAN2_PIN)
  540. #define HAS_CONTROLLERFAN (PIN_EXISTS(CONTROLLERFAN))
  541. #define HAS_SERVOS (defined(NUM_SERVOS) && NUM_SERVOS > 0)
  542. #define HAS_SERVO_0 (PIN_EXISTS(SERVO0))
  543. #define HAS_SERVO_1 (PIN_EXISTS(SERVO1))
  544. #define HAS_SERVO_2 (PIN_EXISTS(SERVO2))
  545. #define HAS_SERVO_3 (PIN_EXISTS(SERVO3))
  546. #define HAS_FILAMENT_WIDTH_SENSOR (PIN_EXISTS(FILWIDTH))
  547. #define HAS_FILRUNOUT (PIN_EXISTS(FILRUNOUT))
  548. #define HAS_HOME (PIN_EXISTS(HOME))
  549. #define HAS_KILL (PIN_EXISTS(KILL))
  550. #define HAS_SUICIDE (PIN_EXISTS(SUICIDE))
  551. #define HAS_PHOTOGRAPH (PIN_EXISTS(PHOTOGRAPH))
  552. #define HAS_X_MIN (PIN_EXISTS(X_MIN))
  553. #define HAS_X_MAX (PIN_EXISTS(X_MAX))
  554. #define HAS_Y_MIN (PIN_EXISTS(Y_MIN))
  555. #define HAS_Y_MAX (PIN_EXISTS(Y_MAX))
  556. #define HAS_Z_MIN (PIN_EXISTS(Z_MIN))
  557. #define HAS_Z_MAX (PIN_EXISTS(Z_MAX))
  558. #define HAS_Z2_MIN (PIN_EXISTS(Z2_MIN))
  559. #define HAS_Z2_MAX (PIN_EXISTS(Z2_MAX))
  560. #define HAS_Z_PROBE (PIN_EXISTS(Z_MIN_PROBE))
  561. #define HAS_SOLENOID_1 (PIN_EXISTS(SOL1))
  562. #define HAS_SOLENOID_2 (PIN_EXISTS(SOL2))
  563. #define HAS_SOLENOID_3 (PIN_EXISTS(SOL3))
  564. #define HAS_MICROSTEPS (PIN_EXISTS(X_MS1))
  565. #define HAS_MICROSTEPS_E0 (PIN_EXISTS(E0_MS1))
  566. #define HAS_MICROSTEPS_E1 (PIN_EXISTS(E1_MS1))
  567. #define HAS_MICROSTEPS_E2 (PIN_EXISTS(E2_MS1))
  568. #define HAS_STEPPER_RESET (PIN_EXISTS(STEPPER_RESET))
  569. #define HAS_X_ENABLE (PIN_EXISTS(X_ENABLE))
  570. #define HAS_X2_ENABLE (PIN_EXISTS(X2_ENABLE))
  571. #define HAS_Y_ENABLE (PIN_EXISTS(Y_ENABLE))
  572. #define HAS_Y2_ENABLE (PIN_EXISTS(Y2_ENABLE))
  573. #define HAS_Z_ENABLE (PIN_EXISTS(Z_ENABLE))
  574. #define HAS_Z2_ENABLE (PIN_EXISTS(Z2_ENABLE))
  575. #define HAS_E0_ENABLE (PIN_EXISTS(E0_ENABLE))
  576. #define HAS_E1_ENABLE (PIN_EXISTS(E1_ENABLE))
  577. #define HAS_E2_ENABLE (PIN_EXISTS(E2_ENABLE))
  578. #define HAS_E3_ENABLE (PIN_EXISTS(E3_ENABLE))
  579. #define HAS_E4_ENABLE (PIN_EXISTS(E4_ENABLE))
  580. #define HAS_X_DIR (PIN_EXISTS(X_DIR))
  581. #define HAS_X2_DIR (PIN_EXISTS(X2_DIR))
  582. #define HAS_Y_DIR (PIN_EXISTS(Y_DIR))
  583. #define HAS_Y2_DIR (PIN_EXISTS(Y2_DIR))
  584. #define HAS_Z_DIR (PIN_EXISTS(Z_DIR))
  585. #define HAS_Z2_DIR (PIN_EXISTS(Z2_DIR))
  586. #define HAS_E0_DIR (PIN_EXISTS(E0_DIR))
  587. #define HAS_E1_DIR (PIN_EXISTS(E1_DIR))
  588. #define HAS_E2_DIR (PIN_EXISTS(E2_DIR))
  589. #define HAS_E3_DIR (PIN_EXISTS(E3_DIR))
  590. #define HAS_E4_DIR (PIN_EXISTS(E4_DIR))
  591. #define HAS_X_STEP (PIN_EXISTS(X_STEP))
  592. #define HAS_X2_STEP (PIN_EXISTS(X2_STEP))
  593. #define HAS_Y_STEP (PIN_EXISTS(Y_STEP))
  594. #define HAS_Y2_STEP (PIN_EXISTS(Y2_STEP))
  595. #define HAS_Z_STEP (PIN_EXISTS(Z_STEP))
  596. #define HAS_Z2_STEP (PIN_EXISTS(Z2_STEP))
  597. #define HAS_E0_STEP (PIN_EXISTS(E0_STEP))
  598. #define HAS_E1_STEP (PIN_EXISTS(E1_STEP))
  599. #define HAS_E2_STEP (PIN_EXISTS(E2_STEP))
  600. #define HAS_E3_STEP (PIN_EXISTS(E3_STEP))
  601. #define HAS_E4_STEP (PIN_EXISTS(E4_STEP))
  602. #define HAS_MOTOR_CURRENT_PWM (PIN_EXISTS(MOTOR_CURRENT_PWM_XY) || PIN_EXISTS(MOTOR_CURRENT_PWM_Z) || PIN_EXISTS(MOTOR_CURRENT_PWM_E))
  603. #define HAS_TEMP_HOTEND (HAS_TEMP_0 || ENABLED(HEATER_0_USES_MAX6675))
  604. /**
  605. * Helper Macros for heaters and extruder fan
  606. */
  607. #define WRITE_HEATER_0P(v) WRITE(HEATER_0_PIN, v)
  608. #if EXTRUDERS > 1 || ENABLED(HEATERS_PARALLEL)
  609. #define WRITE_HEATER_1(v) WRITE(HEATER_1_PIN, v)
  610. #if EXTRUDERS > 2
  611. #define WRITE_HEATER_2(v) WRITE(HEATER_2_PIN, v)
  612. #if EXTRUDERS > 3
  613. #define WRITE_HEATER_3(v) WRITE(HEATER_3_PIN, v)
  614. #endif
  615. #endif
  616. #endif
  617. #if ENABLED(HEATERS_PARALLEL)
  618. #define WRITE_HEATER_0(v) { WRITE_HEATER_0P(v); WRITE_HEATER_1(v); }
  619. #else
  620. #define WRITE_HEATER_0(v) WRITE_HEATER_0P(v)
  621. #endif
  622. #if HAS_HEATER_BED
  623. #define WRITE_HEATER_BED(v) WRITE(HEATER_BED_PIN, v)
  624. #endif
  625. /**
  626. * Up to 3 PWM fans
  627. */
  628. #if HAS_FAN2
  629. #define FAN_COUNT 3
  630. #elif HAS_FAN1
  631. #define FAN_COUNT 2
  632. #elif HAS_FAN0
  633. #define FAN_COUNT 1
  634. #else
  635. #define FAN_COUNT 0
  636. #endif
  637. #if HAS_FAN0
  638. #define WRITE_FAN(v) WRITE(FAN_PIN, v)
  639. #define WRITE_FAN0(v) WRITE_FAN(v)
  640. #endif
  641. #if HAS_FAN1
  642. #define WRITE_FAN1(v) WRITE(FAN1_PIN, v)
  643. #endif
  644. #if HAS_FAN2
  645. #define WRITE_FAN2(v) WRITE(FAN2_PIN, v)
  646. #endif
  647. #define WRITE_FAN_N(n, v) WRITE_FAN##n(v)
  648. #define HAS_BUZZER (PIN_EXISTS(BEEPER) || defined(LCD_USE_I2C_BUZZER))
  649. #if HAS_SERVOS
  650. #ifndef X_ENDSTOP_SERVO_NR
  651. #define X_ENDSTOP_SERVO_NR -1
  652. #endif
  653. #ifndef Y_ENDSTOP_SERVO_NR
  654. #define Y_ENDSTOP_SERVO_NR -1
  655. #endif
  656. #ifndef Z_ENDSTOP_SERVO_NR
  657. #define Z_ENDSTOP_SERVO_NR -1
  658. #endif
  659. #if X_ENDSTOP_SERVO_NR >= 0 || Y_ENDSTOP_SERVO_NR >= 0 || HAS_Z_ENDSTOP_SERVO
  660. #define HAS_SERVO_ENDSTOPS true
  661. #define SERVO_ENDSTOP_IDS { X_ENDSTOP_SERVO_NR, Y_ENDSTOP_SERVO_NR, Z_ENDSTOP_SERVO_NR }
  662. #endif
  663. #endif
  664. #if ( (HAS_Z_MIN && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)) || HAS_Z_PROBE ) \
  665. && ( \
  666. ENABLED(FIX_MOUNTED_PROBE) \
  667. || ENABLED(MECHANICAL_PROBE) \
  668. || HAS_Z_ENDSTOP_SERVO \
  669. || ENABLED(Z_PROBE_ALLEN_KEY) \
  670. || ENABLED(Z_PROBE_SLED) \
  671. )
  672. #define HAS_Z_MIN_PROBE
  673. #endif
  674. #endif //CONFIGURATION_LCD
  675. #endif //CONDITIONALS_H