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_post.h 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008
  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_post.h
  24. * Defines that depend on configuration but are not editable.
  25. */
  26. #ifndef CONDITIONALS_POST_H
  27. #define CONDITIONALS_POST_H
  28. #define IS_SCARA (ENABLED(MORGAN_SCARA) || ENABLED(MAKERARM_SCARA))
  29. #define IS_KINEMATIC (ENABLED(DELTA) || IS_SCARA)
  30. #define IS_CARTESIAN !IS_KINEMATIC
  31. /**
  32. * Axis lengths and center
  33. */
  34. #define X_MAX_LENGTH (X_MAX_POS - (X_MIN_POS))
  35. #define Y_MAX_LENGTH (Y_MAX_POS - (Y_MIN_POS))
  36. #define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
  37. // Defined only if the sanity-check is bypassed
  38. #ifndef X_BED_SIZE
  39. #define X_BED_SIZE X_MAX_LENGTH
  40. #endif
  41. #ifndef Y_BED_SIZE
  42. #define Y_BED_SIZE Y_MAX_LENGTH
  43. #endif
  44. // Require 0,0 bed center for Delta and SCARA
  45. #if IS_KINEMATIC
  46. #define BED_CENTER_AT_0_0
  47. #endif
  48. // Define center values for future use
  49. #if ENABLED(BED_CENTER_AT_0_0)
  50. #define X_CENTER 0
  51. #define Y_CENTER 0
  52. #else
  53. #define X_CENTER ((X_BED_SIZE) / 2)
  54. #define Y_CENTER ((Y_BED_SIZE) / 2)
  55. #endif
  56. #define Z_CENTER ((Z_MIN_POS + Z_MAX_POS) / 2)
  57. // Get the linear boundaries of the bed
  58. #define X_MIN_BED (X_CENTER - (X_BED_SIZE) / 2)
  59. #define X_MAX_BED (X_CENTER + (X_BED_SIZE) / 2)
  60. #define Y_MIN_BED (Y_CENTER - (Y_BED_SIZE) / 2)
  61. #define Y_MAX_BED (Y_CENTER + (Y_BED_SIZE) / 2)
  62. /**
  63. * CoreXY, CoreXZ, and CoreYZ - and their reverse
  64. */
  65. #define CORE_IS_XY (ENABLED(COREXY) || ENABLED(COREYX))
  66. #define CORE_IS_XZ (ENABLED(COREXZ) || ENABLED(COREZX))
  67. #define CORE_IS_YZ (ENABLED(COREYZ) || ENABLED(COREZY))
  68. #define IS_CORE (CORE_IS_XY || CORE_IS_XZ || CORE_IS_YZ)
  69. #if IS_CORE
  70. #if CORE_IS_XY
  71. #define CORE_AXIS_1 A_AXIS
  72. #define CORE_AXIS_2 B_AXIS
  73. #define NORMAL_AXIS Z_AXIS
  74. #elif CORE_IS_XZ
  75. #define CORE_AXIS_1 A_AXIS
  76. #define NORMAL_AXIS Y_AXIS
  77. #define CORE_AXIS_2 C_AXIS
  78. #elif CORE_IS_YZ
  79. #define NORMAL_AXIS X_AXIS
  80. #define CORE_AXIS_1 B_AXIS
  81. #define CORE_AXIS_2 C_AXIS
  82. #endif
  83. #if (ENABLED(COREYX) || ENABLED(COREZX) || ENABLED(COREZY))
  84. #define CORESIGN(n) (-(n))
  85. #else
  86. #define CORESIGN(n) (n)
  87. #endif
  88. #endif
  89. /**
  90. * No adjustable bed on non-cartesians
  91. */
  92. #if IS_KINEMATIC
  93. #undef LEVEL_BED_CORNERS
  94. #endif
  95. /**
  96. * SCARA cannot use SLOWDOWN and requires QUICKHOME
  97. */
  98. #if IS_SCARA
  99. #undef SLOWDOWN
  100. #define QUICK_HOME
  101. #endif
  102. /**
  103. * Set the home position based on settings or manual overrides
  104. */
  105. #ifdef MANUAL_X_HOME_POS
  106. #define X_HOME_POS MANUAL_X_HOME_POS
  107. #elif ENABLED(BED_CENTER_AT_0_0)
  108. #if ENABLED(DELTA)
  109. #define X_HOME_POS 0
  110. #else
  111. #define X_HOME_POS ((X_BED_SIZE) * (X_HOME_DIR) * 0.5)
  112. #endif
  113. #else
  114. #if ENABLED(DELTA)
  115. #define X_HOME_POS (X_MIN_POS + (X_BED_SIZE) * 0.5)
  116. #else
  117. #define X_HOME_POS (X_HOME_DIR < 0 ? X_MIN_POS : X_MAX_POS)
  118. #endif
  119. #endif
  120. #ifdef MANUAL_Y_HOME_POS
  121. #define Y_HOME_POS MANUAL_Y_HOME_POS
  122. #elif ENABLED(BED_CENTER_AT_0_0)
  123. #if ENABLED(DELTA)
  124. #define Y_HOME_POS 0
  125. #else
  126. #define Y_HOME_POS ((Y_BED_SIZE) * (Y_HOME_DIR) * 0.5)
  127. #endif
  128. #else
  129. #if ENABLED(DELTA)
  130. #define Y_HOME_POS (Y_MIN_POS + (Y_BED_SIZE) * 0.5)
  131. #else
  132. #define Y_HOME_POS (Y_HOME_DIR < 0 ? Y_MIN_POS : Y_MAX_POS)
  133. #endif
  134. #endif
  135. #ifdef MANUAL_Z_HOME_POS
  136. #define Z_HOME_POS MANUAL_Z_HOME_POS
  137. #else
  138. #define Z_HOME_POS (Z_HOME_DIR < 0 ? Z_MIN_POS : Z_MAX_POS)
  139. #endif
  140. /**
  141. * If DELTA_HEIGHT isn't defined use the old setting
  142. */
  143. #if ENABLED(DELTA) && !defined(DELTA_HEIGHT)
  144. #define DELTA_HEIGHT Z_HOME_POS
  145. #endif
  146. /**
  147. * Auto Bed Leveling and Z Probe Repeatability Test
  148. */
  149. #define HOMING_Z_WITH_PROBE (HAS_BED_PROBE && Z_HOME_DIR < 0 && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN))
  150. /**
  151. * Z Sled Probe requires Z_SAFE_HOMING
  152. */
  153. #if ENABLED(Z_PROBE_SLED)
  154. #define Z_SAFE_HOMING
  155. #endif
  156. /**
  157. * DELTA should ignore Z_SAFE_HOMING and SLOWDOWN
  158. */
  159. #if ENABLED(DELTA)
  160. #undef Z_SAFE_HOMING
  161. #undef SLOWDOWN
  162. #endif
  163. /**
  164. * Safe Homing Options
  165. */
  166. #if ENABLED(Z_SAFE_HOMING)
  167. #ifndef Z_SAFE_HOMING_X_POINT
  168. #define Z_SAFE_HOMING_X_POINT X_CENTER
  169. #endif
  170. #ifndef Z_SAFE_HOMING_Y_POINT
  171. #define Z_SAFE_HOMING_Y_POINT Y_CENTER
  172. #endif
  173. #define X_TILT_FULCRUM Z_SAFE_HOMING_X_POINT
  174. #define Y_TILT_FULCRUM Z_SAFE_HOMING_Y_POINT
  175. #else
  176. #define X_TILT_FULCRUM X_HOME_POS
  177. #define Y_TILT_FULCRUM Y_HOME_POS
  178. #endif
  179. /**
  180. * Host keep alive
  181. */
  182. #ifndef DEFAULT_KEEPALIVE_INTERVAL
  183. #define DEFAULT_KEEPALIVE_INTERVAL 2
  184. #endif
  185. #ifdef CPU_32_BIT
  186. /**
  187. * Hidden options for developer
  188. */
  189. // Double stepping start from STEP_DOUBLER_FREQUENCY + 1, quad stepping start from STEP_DOUBLER_FREQUENCY * 2 + 1
  190. #ifndef STEP_DOUBLER_FREQUENCY
  191. #if ENABLED(ADVANCE) || ENABLED(LIN_ADVANCE)
  192. #define STEP_DOUBLER_FREQUENCY 60000 // Hz
  193. #else
  194. #define STEP_DOUBLER_FREQUENCY 80000 // Hz
  195. #endif
  196. #endif
  197. // Disable double / quad stepping
  198. //#define DISABLE_MULTI_STEPPING
  199. #endif
  200. /**
  201. * Provide a MAX_AUTORETRACT for older configs
  202. */
  203. #if ENABLED(FWRETRACT) && !defined(MAX_AUTORETRACT)
  204. #define MAX_AUTORETRACT 99
  205. #endif
  206. /**
  207. * MAX_STEP_FREQUENCY differs for TOSHIBA
  208. */
  209. #if ENABLED(CONFIG_STEPPERS_TOSHIBA)
  210. #ifdef CPU_32_BIT
  211. #define MAX_STEP_FREQUENCY STEP_DOUBLER_FREQUENCY // Max step frequency for Toshiba Stepper Controllers, 96kHz is close to maximum for an Arduino Due
  212. #else
  213. #define MAX_STEP_FREQUENCY 10000 // Max step frequency for Toshiba Stepper Controllers
  214. #endif
  215. #else
  216. #ifdef CPU_32_BIT
  217. #define MAX_STEP_FREQUENCY (STEP_DOUBLER_FREQUENCY * 4) // Max step frequency for the Due is approx. 330kHz
  218. #else
  219. #define MAX_STEP_FREQUENCY 40000 // Max step frequency for Ultimaker (5000 pps / half step)
  220. #endif
  221. #endif
  222. // MS1 MS2 Stepper Driver Microstepping mode table
  223. #define MICROSTEP1 LOW,LOW
  224. #define MICROSTEP2 HIGH,LOW
  225. #define MICROSTEP4 LOW,HIGH
  226. #define MICROSTEP8 HIGH,HIGH
  227. #ifdef __SAM3X8E__
  228. #if MB(ALLIGATOR)
  229. #define MICROSTEP16 LOW,LOW
  230. #define MICROSTEP32 HIGH,HIGH
  231. #else
  232. #define MICROSTEP16 HIGH,HIGH
  233. #endif
  234. #else
  235. #define MICROSTEP16 HIGH,HIGH
  236. #endif
  237. /**
  238. * Advance calculated values
  239. */
  240. #if ENABLED(ADVANCE)
  241. #define EXTRUSION_AREA (0.25 * (D_FILAMENT) * (D_FILAMENT) * M_PI)
  242. #define STEPS_PER_CUBIC_MM_E (axis_steps_per_mm[E_AXIS_N] / (EXTRUSION_AREA))
  243. #endif
  244. #if ENABLED(ULTIPANEL) && DISABLED(ELB_FULL_GRAPHIC_CONTROLLER)
  245. #undef SD_DETECT_INVERTED
  246. #endif
  247. /**
  248. * Set defaults for missing (newer) options
  249. */
  250. #ifndef DISABLE_INACTIVE_X
  251. #define DISABLE_INACTIVE_X DISABLE_X
  252. #endif
  253. #ifndef DISABLE_INACTIVE_Y
  254. #define DISABLE_INACTIVE_Y DISABLE_Y
  255. #endif
  256. #ifndef DISABLE_INACTIVE_Z
  257. #define DISABLE_INACTIVE_Z DISABLE_Z
  258. #endif
  259. #ifndef DISABLE_INACTIVE_E
  260. #define DISABLE_INACTIVE_E DISABLE_E
  261. #endif
  262. // Power Signal Control Definitions
  263. // By default use ATX definition
  264. #ifndef POWER_SUPPLY
  265. #define POWER_SUPPLY 1
  266. #endif
  267. #if (POWER_SUPPLY == 1) // 1 = ATX
  268. #define PS_ON_AWAKE LOW
  269. #define PS_ON_ASLEEP HIGH
  270. #elif (POWER_SUPPLY == 2) // 2 = X-Box 360 203W
  271. #define PS_ON_AWAKE HIGH
  272. #define PS_ON_ASLEEP LOW
  273. #endif
  274. #define HAS_POWER_SWITCH (POWER_SUPPLY > 0 && PIN_EXISTS(PS_ON))
  275. /**
  276. * Temp Sensor defines
  277. */
  278. #if TEMP_SENSOR_0 == -3
  279. #define HEATER_0_USES_MAX6675
  280. #define MAX6675_IS_MAX31855
  281. #define MAX6675_TMIN -270
  282. #define MAX6675_TMAX 1800
  283. #elif TEMP_SENSOR_0 == -2
  284. #define HEATER_0_USES_MAX6675
  285. #define MAX6675_TMIN 0
  286. #define MAX6675_TMAX 1024
  287. #elif TEMP_SENSOR_0 == -1
  288. #define HEATER_0_USES_AD595
  289. #elif TEMP_SENSOR_0 == 0
  290. #undef HEATER_0_MINTEMP
  291. #undef HEATER_0_MAXTEMP
  292. #elif TEMP_SENSOR_0 > 0
  293. #define THERMISTORHEATER_0 TEMP_SENSOR_0
  294. #define HEATER_0_USES_THERMISTOR
  295. #endif
  296. #if TEMP_SENSOR_1 <= -2
  297. #error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_1"
  298. #elif TEMP_SENSOR_1 == -1
  299. #define HEATER_1_USES_AD595
  300. #elif TEMP_SENSOR_1 == 0
  301. #undef HEATER_1_MINTEMP
  302. #undef HEATER_1_MAXTEMP
  303. #elif TEMP_SENSOR_1 > 0
  304. #define THERMISTORHEATER_1 TEMP_SENSOR_1
  305. #define HEATER_1_USES_THERMISTOR
  306. #endif
  307. #if TEMP_SENSOR_2 <= -2
  308. #error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_2"
  309. #elif TEMP_SENSOR_2 == -1
  310. #define HEATER_2_USES_AD595
  311. #elif TEMP_SENSOR_2 == 0
  312. #undef HEATER_2_MINTEMP
  313. #undef HEATER_2_MAXTEMP
  314. #elif TEMP_SENSOR_2 > 0
  315. #define THERMISTORHEATER_2 TEMP_SENSOR_2
  316. #define HEATER_2_USES_THERMISTOR
  317. #endif
  318. #if TEMP_SENSOR_3 <= -2
  319. #error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_3"
  320. #elif TEMP_SENSOR_3 == -1
  321. #define HEATER_3_USES_AD595
  322. #elif TEMP_SENSOR_3 == 0
  323. #undef HEATER_3_MINTEMP
  324. #undef HEATER_3_MAXTEMP
  325. #elif TEMP_SENSOR_3 > 0
  326. #define THERMISTORHEATER_3 TEMP_SENSOR_3
  327. #define HEATER_3_USES_THERMISTOR
  328. #endif
  329. #if TEMP_SENSOR_4 <= -2
  330. #error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_4"
  331. #elif TEMP_SENSOR_4 == -1
  332. #define HEATER_4_USES_AD595
  333. #elif TEMP_SENSOR_4 == 0
  334. #undef HEATER_4_MINTEMP
  335. #undef HEATER_4_MAXTEMP
  336. #elif TEMP_SENSOR_4 > 0
  337. #define THERMISTORHEATER_4 TEMP_SENSOR_4
  338. #define HEATER_4_USES_THERMISTOR
  339. #endif
  340. #if TEMP_SENSOR_BED <= -2
  341. #error "MAX6675 / MAX31855 Thermocouples not supported for TEMP_SENSOR_BED"
  342. #elif TEMP_SENSOR_BED == -1
  343. #define BED_USES_AD595
  344. #elif TEMP_SENSOR_BED == 0
  345. #undef BED_MINTEMP
  346. #undef BED_MAXTEMP
  347. #elif TEMP_SENSOR_BED > 0
  348. #define THERMISTORBED TEMP_SENSOR_BED
  349. #define BED_USES_THERMISTOR
  350. #endif
  351. #ifdef __SAM3X8E__
  352. #define HEATER_USES_AD595 (ENABLED(HEATER_0_USES_AD595) || ENABLED(HEATER_1_USES_AD595) || ENABLED(HEATER_2_USES_AD595) || ENABLED(HEATER_3_USES_AD595))
  353. #endif
  354. /**
  355. * Flags for PID handling
  356. */
  357. #define HAS_PID_HEATING (ENABLED(PIDTEMP) || ENABLED(PIDTEMPBED))
  358. #define HAS_PID_FOR_BOTH (ENABLED(PIDTEMP) && ENABLED(PIDTEMPBED))
  359. /**
  360. * Default hotend offsets, if not defined
  361. */
  362. #if HOTENDS > 1
  363. #ifndef HOTEND_OFFSET_X
  364. #define HOTEND_OFFSET_X { 0 } // X offsets for each extruder
  365. #endif
  366. #ifndef HOTEND_OFFSET_Y
  367. #define HOTEND_OFFSET_Y { 0 } // Y offsets for each extruder
  368. #endif
  369. #if !defined(HOTEND_OFFSET_Z) && (ENABLED(DUAL_X_CARRIAGE) || ENABLED(SWITCHING_NOZZLE))
  370. #define HOTEND_OFFSET_Z { 0 }
  371. #endif
  372. #endif
  373. /**
  374. * ARRAY_BY_EXTRUDERS based on EXTRUDERS
  375. */
  376. #define ARRAY_BY_EXTRUDERS(...) ARRAY_N(EXTRUDERS, __VA_ARGS__)
  377. #define ARRAY_BY_EXTRUDERS1(v1) ARRAY_BY_EXTRUDERS(v1, v1, v1, v1, v1, v1)
  378. /**
  379. * ARRAY_BY_HOTENDS based on HOTENDS
  380. */
  381. #define ARRAY_BY_HOTENDS(...) ARRAY_N(HOTENDS, __VA_ARGS__)
  382. #define ARRAY_BY_HOTENDS1(v1) ARRAY_BY_HOTENDS(v1, v1, v1, v1, v1, v1)
  383. /**
  384. * Z_DUAL_ENDSTOPS endstop reassignment
  385. */
  386. #if ENABLED(Z_DUAL_ENDSTOPS)
  387. #define _XMIN_ 100
  388. #define _YMIN_ 200
  389. #define _ZMIN_ 300
  390. #define _XMAX_ 101
  391. #define _YMAX_ 201
  392. #define _ZMAX_ 301
  393. #if Z2_USE_ENDSTOP == _XMIN_
  394. #define USE_XMIN_PLUG
  395. #elif Z2_USE_ENDSTOP == _XMAX_
  396. #define USE_XMAX_PLUG
  397. #elif Z2_USE_ENDSTOP == _YMIN_
  398. #define USE_YMIN_PLUG
  399. #elif Z2_USE_ENDSTOP == _YMAX_
  400. #define USE_YMAX_PLUG
  401. #elif Z2_USE_ENDSTOP == _ZMIN_
  402. #define USE_ZMIN_PLUG
  403. #elif Z2_USE_ENDSTOP == _ZMAX_
  404. #define USE_ZMAX_PLUG
  405. #endif
  406. #if Z_HOME_DIR > 0
  407. #if Z2_USE_ENDSTOP == _XMIN_
  408. #define Z2_MAX_ENDSTOP_INVERTING X_MIN_ENDSTOP_INVERTING
  409. #define Z2_MAX_PIN X_MIN_PIN
  410. #elif Z2_USE_ENDSTOP == _XMAX_
  411. #define Z2_MAX_ENDSTOP_INVERTING X_MAX_ENDSTOP_INVERTING
  412. #define Z2_MAX_PIN X_MAX_PIN
  413. #elif Z2_USE_ENDSTOP == _YMIN_
  414. #define Z2_MAX_ENDSTOP_INVERTING Y_MIN_ENDSTOP_INVERTING
  415. #define Z2_MAX_PIN Y_MIN_PIN
  416. #elif Z2_USE_ENDSTOP == _YMAX_
  417. #define Z2_MAX_ENDSTOP_INVERTING Y_MAX_ENDSTOP_INVERTING
  418. #define Z2_MAX_PIN Y_MAX_PIN
  419. #elif Z2_USE_ENDSTOP == _ZMIN_
  420. #define Z2_MAX_ENDSTOP_INVERTING Z_MIN_ENDSTOP_INVERTING
  421. #define Z2_MAX_PIN Z_MIN_PIN
  422. #elif Z2_USE_ENDSTOP == _ZMAX_
  423. #define Z2_MAX_ENDSTOP_INVERTING Z_MAX_ENDSTOP_INVERTING
  424. #define Z2_MAX_PIN Z_MAX_PIN
  425. #else
  426. #define Z2_MAX_ENDSTOP_INVERTING false
  427. #endif
  428. #else
  429. #if Z2_USE_ENDSTOP == _XMIN_
  430. #define Z2_MIN_ENDSTOP_INVERTING X_MIN_ENDSTOP_INVERTING
  431. #define Z2_MIN_PIN X_MIN_PIN
  432. #elif Z2_USE_ENDSTOP == _XMAX_
  433. #define Z2_MIN_ENDSTOP_INVERTING X_MAX_ENDSTOP_INVERTING
  434. #define Z2_MIN_PIN X_MAX_PIN
  435. #elif Z2_USE_ENDSTOP == _YMIN_
  436. #define Z2_MIN_ENDSTOP_INVERTING Y_MIN_ENDSTOP_INVERTING
  437. #define Z2_MIN_PIN Y_MIN_PIN
  438. #elif Z2_USE_ENDSTOP == _YMAX_
  439. #define Z2_MIN_ENDSTOP_INVERTING Y_MAX_ENDSTOP_INVERTING
  440. #define Z2_MIN_PIN Y_MAX_PIN
  441. #elif Z2_USE_ENDSTOP == _ZMIN_
  442. #define Z2_MIN_ENDSTOP_INVERTING Z_MIN_ENDSTOP_INVERTING
  443. #define Z2_MIN_PIN Z_MIN_PIN
  444. #elif Z2_USE_ENDSTOP == _ZMAX_
  445. #define Z2_MIN_ENDSTOP_INVERTING Z_MAX_ENDSTOP_INVERTING
  446. #define Z2_MIN_PIN Z_MAX_PIN
  447. #else
  448. #define Z2_MIN_ENDSTOP_INVERTING false
  449. #endif
  450. #endif
  451. #endif
  452. // Is an endstop plug used for the Z2 endstop or the bed probe?
  453. #define IS_Z2_OR_PROBE(A,M) ( \
  454. (ENABLED(Z_DUAL_ENDSTOPS) && Z2_USE_ENDSTOP == _##A##M##_) \
  455. || (ENABLED(Z_MIN_PROBE_ENDSTOP) && Z_MIN_PROBE_PIN == A##_##M##_PIN ) )
  456. /**
  457. * Set ENDSTOPPULLUPS for active endstop switches
  458. */
  459. #if ENABLED(ENDSTOPPULLUPS)
  460. #if ENABLED(USE_XMAX_PLUG)
  461. #define ENDSTOPPULLUP_XMAX
  462. #endif
  463. #if ENABLED(USE_YMAX_PLUG)
  464. #define ENDSTOPPULLUP_YMAX
  465. #endif
  466. #if ENABLED(USE_ZMAX_PLUG)
  467. #define ENDSTOPPULLUP_ZMAX
  468. #endif
  469. #if ENABLED(USE_XMIN_PLUG)
  470. #define ENDSTOPPULLUP_XMIN
  471. #endif
  472. #if ENABLED(USE_YMIN_PLUG)
  473. #define ENDSTOPPULLUP_YMIN
  474. #endif
  475. #if ENABLED(USE_ZMIN_PLUG)
  476. #define ENDSTOPPULLUP_ZMIN
  477. #endif
  478. #endif
  479. /**
  480. * Shorthand for pin tests, used wherever needed
  481. */
  482. // Steppers
  483. #define HAS_X_ENABLE (PIN_EXISTS(X_ENABLE))
  484. #define HAS_X_DIR (PIN_EXISTS(X_DIR))
  485. #define HAS_X_STEP (PIN_EXISTS(X_STEP))
  486. #define HAS_X_MICROSTEPS (PIN_EXISTS(X_MS1))
  487. #define HAS_X2_ENABLE (PIN_EXISTS(X2_ENABLE))
  488. #define HAS_X2_DIR (PIN_EXISTS(X2_DIR))
  489. #define HAS_X2_STEP (PIN_EXISTS(X2_STEP))
  490. #define HAS_Y_MICROSTEPS (PIN_EXISTS(Y_MS1))
  491. #define HAS_Y_ENABLE (PIN_EXISTS(Y_ENABLE))
  492. #define HAS_Y_DIR (PIN_EXISTS(Y_DIR))
  493. #define HAS_Y_STEP (PIN_EXISTS(Y_STEP))
  494. #define HAS_Z_MICROSTEPS (PIN_EXISTS(Z_MS1))
  495. #define HAS_Y2_ENABLE (PIN_EXISTS(Y2_ENABLE))
  496. #define HAS_Y2_DIR (PIN_EXISTS(Y2_DIR))
  497. #define HAS_Y2_STEP (PIN_EXISTS(Y2_STEP))
  498. #define HAS_Z_ENABLE (PIN_EXISTS(Z_ENABLE))
  499. #define HAS_Z_DIR (PIN_EXISTS(Z_DIR))
  500. #define HAS_Z_STEP (PIN_EXISTS(Z_STEP))
  501. #define HAS_Z2_ENABLE (PIN_EXISTS(Z2_ENABLE))
  502. #define HAS_Z2_DIR (PIN_EXISTS(Z2_DIR))
  503. #define HAS_Z2_STEP (PIN_EXISTS(Z2_STEP))
  504. // Extruder steppers and solenoids
  505. #define HAS_E0_ENABLE (PIN_EXISTS(E0_ENABLE))
  506. #define HAS_E0_DIR (PIN_EXISTS(E0_DIR))
  507. #define HAS_E0_STEP (PIN_EXISTS(E0_STEP))
  508. #define HAS_E0_MICROSTEPS (PIN_EXISTS(E0_MS1))
  509. #define HAS_SOLENOID_0 (PIN_EXISTS(SOL0))
  510. #define HAS_E1_ENABLE (PIN_EXISTS(E1_ENABLE))
  511. #define HAS_E1_DIR (PIN_EXISTS(E1_DIR))
  512. #define HAS_E1_STEP (PIN_EXISTS(E1_STEP))
  513. #define HAS_E1_MICROSTEPS (PIN_EXISTS(E1_MS1))
  514. #define HAS_SOLENOID_1 (PIN_EXISTS(SOL1))
  515. #define HAS_E2_ENABLE (PIN_EXISTS(E2_ENABLE))
  516. #define HAS_E2_DIR (PIN_EXISTS(E2_DIR))
  517. #define HAS_E2_STEP (PIN_EXISTS(E2_STEP))
  518. #define HAS_E2_MICROSTEPS (PIN_EXISTS(E2_MS1))
  519. #define HAS_SOLENOID_2 (PIN_EXISTS(SOL2))
  520. #define HAS_E3_ENABLE (PIN_EXISTS(E3_ENABLE))
  521. #define HAS_E3_DIR (PIN_EXISTS(E3_DIR))
  522. #define HAS_E3_STEP (PIN_EXISTS(E3_STEP))
  523. #define HAS_E3_MICROSTEPS (PIN_EXISTS(E3_MS1))
  524. #define HAS_SOLENOID_3 (PIN_EXISTS(SOL3))
  525. #define HAS_E4_ENABLE (PIN_EXISTS(E4_ENABLE))
  526. #define HAS_E4_DIR (PIN_EXISTS(E4_DIR))
  527. #define HAS_E4_STEP (PIN_EXISTS(E4_STEP))
  528. #define HAS_E4_MICROSTEPS (PIN_EXISTS(E4_MS1))
  529. #define HAS_SOLENOID_4 (PIN_EXISTS(SOL4))
  530. // Endstops and bed probe
  531. #define HAS_X_MIN (PIN_EXISTS(X_MIN) && !IS_Z2_OR_PROBE(X,MIN))
  532. #define HAS_X_MAX (PIN_EXISTS(X_MAX) && !IS_Z2_OR_PROBE(X,MAX))
  533. #define HAS_Y_MIN (PIN_EXISTS(Y_MIN) && !IS_Z2_OR_PROBE(Y,MIN))
  534. #define HAS_Y_MAX (PIN_EXISTS(Y_MAX) && !IS_Z2_OR_PROBE(Y,MAX))
  535. #define HAS_Z_MIN (PIN_EXISTS(Z_MIN) && !IS_Z2_OR_PROBE(Z,MIN))
  536. #define HAS_Z_MAX (PIN_EXISTS(Z_MAX) && !IS_Z2_OR_PROBE(Z,MAX))
  537. #define HAS_Z2_MIN (PIN_EXISTS(Z2_MIN))
  538. #define HAS_Z2_MAX (PIN_EXISTS(Z2_MAX))
  539. #define HAS_Z_MIN_PROBE_PIN (PIN_EXISTS(Z_MIN_PROBE))
  540. // Thermistors
  541. #define HAS_TEMP_0 (PIN_EXISTS(TEMP_0) && TEMP_SENSOR_0 != 0 && TEMP_SENSOR_0 > -2)
  542. #define HAS_TEMP_1 (PIN_EXISTS(TEMP_1) && TEMP_SENSOR_1 != 0 && TEMP_SENSOR_1 > -2)
  543. #define HAS_TEMP_2 (PIN_EXISTS(TEMP_2) && TEMP_SENSOR_2 != 0 && TEMP_SENSOR_2 > -2)
  544. #define HAS_TEMP_3 (PIN_EXISTS(TEMP_3) && TEMP_SENSOR_3 != 0 && TEMP_SENSOR_3 > -2)
  545. #define HAS_TEMP_4 (PIN_EXISTS(TEMP_4) && TEMP_SENSOR_4 != 0 && TEMP_SENSOR_4 > -2)
  546. #define HAS_TEMP_HOTEND (HAS_TEMP_0 || ENABLED(HEATER_0_USES_MAX6675))
  547. #define HAS_TEMP_BED (PIN_EXISTS(TEMP_BED) && TEMP_SENSOR_BED != 0 && TEMP_SENSOR_BED > -2)
  548. // Heaters
  549. #define HAS_HEATER_0 (PIN_EXISTS(HEATER_0))
  550. #define HAS_HEATER_1 (PIN_EXISTS(HEATER_1))
  551. #define HAS_HEATER_2 (PIN_EXISTS(HEATER_2))
  552. #define HAS_HEATER_3 (PIN_EXISTS(HEATER_3))
  553. #define HAS_HEATER_4 (PIN_EXISTS(HEATER_4))
  554. #define HAS_HEATER_BED (PIN_EXISTS(HEATER_BED))
  555. // Thermal protection
  556. #define HAS_THERMALLY_PROTECTED_BED (ENABLED(THERMAL_PROTECTION_BED) && HAS_TEMP_BED && HAS_HEATER_BED)
  557. #define WATCH_HOTENDS (ENABLED(THERMAL_PROTECTION_HOTENDS) && WATCH_TEMP_PERIOD > 0)
  558. #define WATCH_THE_BED (HAS_THERMALLY_PROTECTED_BED && WATCH_BED_TEMP_PERIOD > 0)
  559. // Auto fans
  560. #define HAS_AUTO_FAN_0 (PIN_EXISTS(E0_AUTO_FAN))
  561. #define HAS_AUTO_FAN_1 (HOTENDS > 1 && PIN_EXISTS(E1_AUTO_FAN))
  562. #define HAS_AUTO_FAN_2 (HOTENDS > 2 && PIN_EXISTS(E2_AUTO_FAN))
  563. #define HAS_AUTO_FAN_3 (HOTENDS > 3 && PIN_EXISTS(E3_AUTO_FAN))
  564. #define HAS_AUTO_FAN_4 (HOTENDS > 4 && PIN_EXISTS(E4_AUTO_FAN))
  565. #define HAS_AUTO_FAN (HAS_AUTO_FAN_0 || HAS_AUTO_FAN_1 || HAS_AUTO_FAN_2 || HAS_AUTO_FAN_3)
  566. #define AUTO_1_IS_0 (E1_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
  567. #define AUTO_2_IS_0 (E2_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
  568. #define AUTO_2_IS_1 (E2_AUTO_FAN_PIN == E1_AUTO_FAN_PIN)
  569. #define AUTO_3_IS_0 (E3_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
  570. #define AUTO_3_IS_1 (E3_AUTO_FAN_PIN == E1_AUTO_FAN_PIN)
  571. #define AUTO_3_IS_2 (E3_AUTO_FAN_PIN == E2_AUTO_FAN_PIN)
  572. #define AUTO_4_IS_0 (E4_AUTO_FAN_PIN == E0_AUTO_FAN_PIN)
  573. #define AUTO_4_IS_1 (E4_AUTO_FAN_PIN == E1_AUTO_FAN_PIN)
  574. #define AUTO_4_IS_2 (E4_AUTO_FAN_PIN == E2_AUTO_FAN_PIN)
  575. #define AUTO_4_IS_3 (E4_AUTO_FAN_PIN == E3_AUTO_FAN_PIN)
  576. // Other fans
  577. #define HAS_FAN0 (PIN_EXISTS(FAN))
  578. #define HAS_FAN1 (PIN_EXISTS(FAN1) && CONTROLLER_FAN_PIN != FAN1_PIN && E0_AUTO_FAN_PIN != FAN1_PIN && E1_AUTO_FAN_PIN != FAN1_PIN && E2_AUTO_FAN_PIN != FAN1_PIN && E3_AUTO_FAN_PIN != FAN1_PIN)
  579. #define HAS_FAN2 (PIN_EXISTS(FAN2) && CONTROLLER_FAN_PIN != FAN2_PIN && E0_AUTO_FAN_PIN != FAN2_PIN && E1_AUTO_FAN_PIN != FAN2_PIN && E2_AUTO_FAN_PIN != FAN2_PIN && E3_AUTO_FAN_PIN != FAN2_PIN)
  580. #define HAS_CONTROLLER_FAN (PIN_EXISTS(CONTROLLER_FAN))
  581. // Servos
  582. #define HAS_SERVOS (defined(NUM_SERVOS) && NUM_SERVOS > 0)
  583. #define HAS_SERVO_0 (PIN_EXISTS(SERVO0))
  584. #define HAS_SERVO_1 (PIN_EXISTS(SERVO1))
  585. #define HAS_SERVO_2 (PIN_EXISTS(SERVO2))
  586. #define HAS_SERVO_3 (PIN_EXISTS(SERVO3))
  587. // Sensors
  588. #define HAS_FILAMENT_WIDTH_SENSOR (PIN_EXISTS(FILWIDTH))
  589. #define HAS_FIL_RUNOUT (PIN_EXISTS(FIL_RUNOUT))
  590. // User Interface
  591. #define HAS_HOME (PIN_EXISTS(HOME))
  592. #define HAS_KILL (PIN_EXISTS(KILL))
  593. #define HAS_SUICIDE (PIN_EXISTS(SUICIDE))
  594. #define HAS_PHOTOGRAPH (PIN_EXISTS(PHOTOGRAPH))
  595. #define HAS_BUZZER (PIN_EXISTS(BEEPER) || ENABLED(LCD_USE_I2C_BUZZER))
  596. #define HAS_CASE_LIGHT (PIN_EXISTS(CASE_LIGHT) && ENABLED(CASE_LIGHT_ENABLE))
  597. // Digital control
  598. #define HAS_MICROSTEPS (HAS_X_MICROSTEPS || HAS_Y_MICROSTEPS || HAS_Z_MICROSTEPS || HAS_E0_MICROSTEPS || HAS_E1_MICROSTEPS || HAS_E2_MICROSTEPS || HAS_E3_MICROSTEPS || HAS_E4_MICROSTEPS)
  599. #define HAS_STEPPER_RESET (PIN_EXISTS(STEPPER_RESET))
  600. #define HAS_DIGIPOTSS (PIN_EXISTS(DIGIPOTSS))
  601. #define HAS_MOTOR_CURRENT_PWM (PIN_EXISTS(MOTOR_CURRENT_PWM_XY) || PIN_EXISTS(MOTOR_CURRENT_PWM_Z) || PIN_EXISTS(MOTOR_CURRENT_PWM_E))
  602. /**
  603. * This setting is also used by M109 when trying to calculate
  604. * a ballpark safe margin to prevent wait-forever situation.
  605. */
  606. #ifndef EXTRUDE_MINTEMP
  607. #define EXTRUDE_MINTEMP 170
  608. #endif
  609. /**
  610. * Helper Macros for heaters and extruder fan
  611. */
  612. #define WRITE_HEATER_0P(v) WRITE(HEATER_0_PIN, v)
  613. #if HOTENDS > 1 || ENABLED(HEATERS_PARALLEL)
  614. #define WRITE_HEATER_1(v) WRITE(HEATER_1_PIN, v)
  615. #if HOTENDS > 2
  616. #define WRITE_HEATER_2(v) WRITE(HEATER_2_PIN, v)
  617. #if HOTENDS > 3
  618. #define WRITE_HEATER_3(v) WRITE(HEATER_3_PIN, v)
  619. #if HOTENDS > 4
  620. #define WRITE_HEATER_4(v) WRITE(HEATER_4_PIN, v)
  621. #endif // HOTENDS > 4
  622. #endif // HOTENDS > 3
  623. #endif // HOTENDS > 2
  624. #endif // HOTENDS > 1
  625. #if ENABLED(HEATERS_PARALLEL)
  626. #define WRITE_HEATER_0(v) { WRITE_HEATER_0P(v); WRITE_HEATER_1(v); }
  627. #else
  628. #define WRITE_HEATER_0(v) WRITE_HEATER_0P(v)
  629. #endif
  630. /**
  631. * Heated bed requires settings
  632. */
  633. #if HAS_HEATER_BED
  634. #ifndef MAX_BED_POWER
  635. #define MAX_BED_POWER 255
  636. #endif
  637. #ifndef HEATER_BED_INVERTING
  638. #define HEATER_BED_INVERTING false
  639. #endif
  640. #define WRITE_HEATER_BED(v) WRITE(HEATER_BED_PIN, (v) ^ HEATER_BED_INVERTING)
  641. #endif
  642. /**
  643. * Up to 3 PWM fans
  644. */
  645. #if HAS_FAN2
  646. #define FAN_COUNT 3
  647. #elif HAS_FAN1
  648. #define FAN_COUNT 2
  649. #elif HAS_FAN0
  650. #define FAN_COUNT 1
  651. #else
  652. #define FAN_COUNT 0
  653. #endif
  654. #if HAS_FAN0
  655. #define WRITE_FAN(v) WRITE(FAN_PIN, v)
  656. #define WRITE_FAN0(v) WRITE_FAN(v)
  657. #endif
  658. #if HAS_FAN1
  659. #define WRITE_FAN1(v) WRITE(FAN1_PIN, v)
  660. #endif
  661. #if HAS_FAN2
  662. #define WRITE_FAN2(v) WRITE(FAN2_PIN, v)
  663. #endif
  664. #define WRITE_FAN_N(n, v) WRITE_FAN##n(v)
  665. /**
  666. * Part Cooling fan multipliexer
  667. */
  668. #define HAS_FANMUX PIN_EXISTS(FANMUX0)
  669. /**
  670. * Servos and probes
  671. */
  672. #if HAS_SERVOS
  673. #ifndef Z_ENDSTOP_SERVO_NR
  674. #define Z_ENDSTOP_SERVO_NR -1
  675. #endif
  676. #endif
  677. #define PROBE_PIN_CONFIGURED (HAS_Z_MIN_PROBE_PIN || (HAS_Z_MIN && ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)))
  678. #define HAS_BED_PROBE (PROBE_SELECTED && PROBE_PIN_CONFIGURED && DISABLED(PROBE_MANUALLY))
  679. #if ENABLED(Z_PROBE_ALLEN_KEY)
  680. #define PROBE_IS_TRIGGERED_WHEN_STOWED_TEST
  681. #endif
  682. /**
  683. * Bed Probe dependencies
  684. */
  685. #if HAS_BED_PROBE
  686. #if ENABLED(ENDSTOPPULLUPS) && HAS_Z_MIN_PROBE_PIN
  687. #define ENDSTOPPULLUP_ZMIN_PROBE
  688. #endif
  689. #ifndef Z_PROBE_OFFSET_RANGE_MIN
  690. #define Z_PROBE_OFFSET_RANGE_MIN -20
  691. #endif
  692. #ifndef Z_PROBE_OFFSET_RANGE_MAX
  693. #define Z_PROBE_OFFSET_RANGE_MAX 20
  694. #endif
  695. #ifndef XY_PROBE_SPEED
  696. #ifdef HOMING_FEEDRATE_XY
  697. #define XY_PROBE_SPEED HOMING_FEEDRATE_XY
  698. #else
  699. #define XY_PROBE_SPEED 4000
  700. #endif
  701. #endif
  702. #if Z_CLEARANCE_BETWEEN_PROBES > Z_CLEARANCE_DEPLOY_PROBE
  703. #define _Z_CLEARANCE_DEPLOY_PROBE Z_CLEARANCE_BETWEEN_PROBES
  704. #else
  705. #define _Z_CLEARANCE_DEPLOY_PROBE Z_CLEARANCE_DEPLOY_PROBE
  706. #endif
  707. #else
  708. #undef X_PROBE_OFFSET_FROM_EXTRUDER
  709. #undef Y_PROBE_OFFSET_FROM_EXTRUDER
  710. #undef Z_PROBE_OFFSET_FROM_EXTRUDER
  711. #define X_PROBE_OFFSET_FROM_EXTRUDER 0
  712. #define Y_PROBE_OFFSET_FROM_EXTRUDER 0
  713. #define Z_PROBE_OFFSET_FROM_EXTRUDER 0
  714. #endif
  715. /**
  716. * Heater & Fan Pausing
  717. */
  718. #if FAN_COUNT == 0
  719. #undef PROBING_FANS_OFF
  720. #endif
  721. #define QUIET_PROBING (HAS_BED_PROBE && (ENABLED(PROBING_HEATERS_OFF) || ENABLED(PROBING_FANS_OFF) || DELAY_BEFORE_PROBING > 0))
  722. #define HEATER_IDLE_HANDLER (ENABLED(ADVANCED_PAUSE_FEATURE) || ENABLED(PROBING_HEATERS_OFF))
  723. /**
  724. * Delta radius/rod trimmers/angle trimmers
  725. */
  726. #if ENABLED(DELTA)
  727. #ifndef DELTA_CALIBRATION_RADIUS
  728. #define DELTA_CALIBRATION_RADIUS DELTA_PRINTABLE_RADIUS - 10
  729. #endif
  730. #ifndef DELTA_ENDSTOP_ADJ
  731. #define DELTA_ENDSTOP_ADJ { 0, 0, 0 }
  732. #endif
  733. #ifndef DELTA_TOWER_ANGLE_TRIM
  734. #define DELTA_TOWER_ANGLE_TRIM {0, 0, 0}
  735. #endif
  736. #ifndef DELTA_RADIUS_TRIM_TOWER
  737. #define DELTA_RADIUS_TRIM_TOWER {0, 0, 0}
  738. #endif
  739. #ifndef DELTA_DIAGONAL_ROD_TRIM_TOWER
  740. #define DELTA_DIAGONAL_ROD_TRIM_TOWER {0, 0, 0}
  741. #endif
  742. #endif
  743. /**
  744. * Set granular options based on the specific type of leveling
  745. */
  746. #define UBL_DELTA (ENABLED(AUTO_BED_LEVELING_UBL) && (ENABLED(DELTA) || ENABLED(UBL_GRANULAR_SEGMENTATION_FOR_CARTESIAN)))
  747. #define ABL_PLANAR (ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(AUTO_BED_LEVELING_3POINT))
  748. #define ABL_GRID (ENABLED(AUTO_BED_LEVELING_LINEAR) || ENABLED(AUTO_BED_LEVELING_BILINEAR))
  749. #define HAS_ABL (ABL_PLANAR || ABL_GRID || ENABLED(AUTO_BED_LEVELING_UBL))
  750. #define HAS_LEVELING (HAS_ABL || ENABLED(MESH_BED_LEVELING))
  751. #define PLANNER_LEVELING (ABL_PLANAR || ABL_GRID || ENABLED(MESH_BED_LEVELING) || UBL_DELTA)
  752. #define HAS_PROBING_PROCEDURE (HAS_ABL || ENABLED(Z_MIN_PROBE_REPEATABILITY_TEST))
  753. #if HAS_PROBING_PROCEDURE
  754. #define PROBE_BED_WIDTH abs(RIGHT_PROBE_BED_POSITION - (LEFT_PROBE_BED_POSITION))
  755. #define PROBE_BED_HEIGHT abs(BACK_PROBE_BED_POSITION - (FRONT_PROBE_BED_POSITION))
  756. #endif
  757. /**
  758. * Buzzer/Speaker
  759. */
  760. #if ENABLED(LCD_USE_I2C_BUZZER)
  761. #ifndef LCD_FEEDBACK_FREQUENCY_HZ
  762. #define LCD_FEEDBACK_FREQUENCY_HZ 1000
  763. #endif
  764. #ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
  765. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS 100
  766. #endif
  767. #else
  768. #ifndef LCD_FEEDBACK_FREQUENCY_HZ
  769. #define LCD_FEEDBACK_FREQUENCY_HZ 5000
  770. #endif
  771. #ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
  772. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS 2
  773. #endif
  774. #endif
  775. /**
  776. * Z_HOMING_HEIGHT / Z_CLEARANCE_BETWEEN_PROBES
  777. */
  778. #ifndef Z_HOMING_HEIGHT
  779. #ifndef Z_CLEARANCE_BETWEEN_PROBES
  780. #define Z_HOMING_HEIGHT 0
  781. #else
  782. #define Z_HOMING_HEIGHT Z_CLEARANCE_BETWEEN_PROBES
  783. #endif
  784. #endif
  785. #ifndef Z_CLEARANCE_BETWEEN_PROBES
  786. #define Z_CLEARANCE_BETWEEN_PROBES Z_HOMING_HEIGHT
  787. #endif
  788. #if Z_CLEARANCE_BETWEEN_PROBES > Z_HOMING_HEIGHT
  789. #define MANUAL_PROBE_HEIGHT Z_CLEARANCE_BETWEEN_PROBES
  790. #else
  791. #define MANUAL_PROBE_HEIGHT Z_HOMING_HEIGHT
  792. #endif
  793. /**
  794. * Bed Probing rectangular bounds
  795. * These can be further constrained in code for Delta and SCARA
  796. */
  797. #if ENABLED(DELTA)
  798. #ifndef DELTA_PROBEABLE_RADIUS
  799. #define DELTA_PROBEABLE_RADIUS DELTA_PRINTABLE_RADIUS
  800. #endif
  801. // Probing points may be verified at compile time within the radius
  802. // using static_assert(HYPOT2(X2-X1,Y2-Y1)<=sq(DELTA_PRINTABLE_RADIUS),"bad probe point!")
  803. // so that may be added to SanityCheck.h in the future.
  804. #define MIN_PROBE_X (X_CENTER - (DELTA_PROBEABLE_RADIUS))
  805. #define MIN_PROBE_Y (Y_CENTER - (DELTA_PROBEABLE_RADIUS))
  806. #define MAX_PROBE_X (X_CENTER + DELTA_PROBEABLE_RADIUS)
  807. #define MAX_PROBE_Y (Y_CENTER + DELTA_PROBEABLE_RADIUS)
  808. #elif IS_SCARA
  809. #define SCARA_PRINTABLE_RADIUS (SCARA_LINKAGE_1 + SCARA_LINKAGE_2)
  810. #define MIN_PROBE_X (X_CENTER - (SCARA_PRINTABLE_RADIUS))
  811. #define MIN_PROBE_Y (Y_CENTER - (SCARA_PRINTABLE_RADIUS))
  812. #define MAX_PROBE_X (X_CENTER + SCARA_PRINTABLE_RADIUS)
  813. #define MAX_PROBE_Y (Y_CENTER + SCARA_PRINTABLE_RADIUS)
  814. #else
  815. // Boundaries for Cartesian probing based on set limits
  816. #if ENABLED(BED_CENTER_AT_0_0)
  817. #define MIN_PROBE_X (max(X_PROBE_OFFSET_FROM_EXTRUDER, 0) - (X_BED_SIZE) / 2)
  818. #define MIN_PROBE_Y (max(Y_PROBE_OFFSET_FROM_EXTRUDER, 0) - (Y_BED_SIZE) / 2)
  819. #define MAX_PROBE_X (min(X_BED_SIZE + X_PROBE_OFFSET_FROM_EXTRUDER, X_BED_SIZE) - (X_BED_SIZE) / 2)
  820. #define MAX_PROBE_Y (min(Y_BED_SIZE + Y_PROBE_OFFSET_FROM_EXTRUDER, Y_BED_SIZE) - (Y_BED_SIZE) / 2)
  821. #else
  822. #define MIN_PROBE_X (max(X_MIN_POS + X_PROBE_OFFSET_FROM_EXTRUDER, 0))
  823. #define MIN_PROBE_Y (max(Y_MIN_POS + Y_PROBE_OFFSET_FROM_EXTRUDER, 0))
  824. #define MAX_PROBE_X (min(X_MAX_POS + X_PROBE_OFFSET_FROM_EXTRUDER, X_BED_SIZE))
  825. #define MAX_PROBE_Y (min(Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER, Y_BED_SIZE))
  826. #endif
  827. #endif
  828. // Stepper pulse duration, in cycles
  829. #define STEP_PULSE_CYCLES ((MINIMUM_STEPPER_PULSE) * CYCLES_PER_MICROSECOND)
  830. #ifdef CPU_32_BIT
  831. // Add additional delay for between direction signal and pulse signal of stepper
  832. #ifndef STEPPER_DIRECTION_DELAY
  833. #define STEPPER_DIRECTION_DELAY 0 // time in microseconds
  834. #endif
  835. #endif
  836. #ifndef __SAM3X8E__ //todo: hal: broken hal encapsulation
  837. #undef UI_VOLTAGE_LEVEL
  838. #undef RADDS_DISPLAY
  839. #undef MOTOR_CURRENT
  840. #endif
  841. #if ENABLED(SDCARD_SORT_ALPHA)
  842. #define HAS_FOLDER_SORTING (FOLDER_SORTING || ENABLED(SDSORT_GCODE))
  843. #endif
  844. // Updated G92 behavior shifts the workspace
  845. #define HAS_POSITION_SHIFT DISABLED(NO_WORKSPACE_OFFSETS)
  846. // The home offset also shifts the coordinate space
  847. #define HAS_HOME_OFFSET (DISABLED(NO_WORKSPACE_OFFSETS) || ENABLED(DELTA))
  848. // Either offset yields extra calculations on all moves
  849. #define HAS_WORKSPACE_OFFSET (HAS_POSITION_SHIFT || HAS_HOME_OFFSET)
  850. // M206 doesn't apply to DELTA
  851. #define HAS_M206_COMMAND (HAS_HOME_OFFSET && DISABLED(DELTA))
  852. // LCD timeout to status screen default is 15s
  853. #ifndef LCD_TIMEOUT_TO_STATUS
  854. #define LCD_TIMEOUT_TO_STATUS 15000
  855. #endif
  856. /**
  857. * DELTA_SEGMENT_MIN_LENGTH for UBL_DELTA
  858. */
  859. #if UBL_DELTA
  860. #ifndef DELTA_SEGMENT_MIN_LENGTH
  861. #if IS_SCARA
  862. #define DELTA_SEGMENT_MIN_LENGTH 0.25 // SCARA minimum segment size is 0.25mm
  863. #elif ENABLED(DELTA)
  864. #define DELTA_SEGMENT_MIN_LENGTH 0.10 // mm (still subject to DELTA_SEGMENTS_PER_SECOND)
  865. #else // CARTESIAN
  866. #define DELTA_SEGMENT_MIN_LENGTH 1.00 // mm (similar to G2/G3 arc segmentation)
  867. #endif
  868. #endif
  869. #endif
  870. // Shorthand
  871. #define GRID_MAX_POINTS ((GRID_MAX_POINTS_X) * (GRID_MAX_POINTS_Y))
  872. // Add commands that need sub-codes to this list
  873. #define USE_GCODE_SUBCODES ENABLED(G38_PROBE_TARGET)
  874. // MESH_BED_LEVELING overrides PROBE_MANUALLY
  875. #if ENABLED(MESH_BED_LEVELING)
  876. #undef PROBE_MANUALLY
  877. #endif
  878. // Parking Extruder
  879. #if ENABLED(PARKING_EXTRUDER)
  880. #ifndef PARKING_EXTRUDER_GRAB_DISTANCE
  881. #define PARKING_EXTRUDER_GRAB_DISTANCE 0
  882. #endif
  883. #ifndef PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
  884. #define PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE HIGH
  885. #endif
  886. #endif
  887. // Use float instead of double. Needs profiling.
  888. #if defined(ARDUINO_ARCH_SAM) && ENABLED(DELTA_FAST_SQRT)
  889. #undef ATAN2
  890. #undef FABS
  891. #undef POW
  892. #undef SQRT
  893. #undef CEIL
  894. #undef FLOOR
  895. #undef LROUND
  896. #undef FMOD
  897. #define ATAN2(y, x) atan2f(y, x)
  898. #define FABS(x) fabsf(x)
  899. #define POW(x, y) powf(x, y)
  900. #define SQRT(x) sqrtf(x)
  901. #define CEIL(x) ceilf(x)
  902. #define FLOOR(x) floorf(x)
  903. #define LROUND(x) lroundf(x)
  904. #define FMOD(x, y) fmodf(x, y)
  905. #endif
  906. #ifdef TEENSYDUINO
  907. #undef max
  908. #define max(a,b) ((a)>(b)?(a):(b))
  909. #undef min
  910. #define min(a,b) ((a)<(b)?(a):(b))
  911. #define NOT_A_PIN 0 // For PINS_DEBUGGING
  912. #endif
  913. #endif // CONDITIONALS_POST_H