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.

SanityCheck.h 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. /**
  2. * SanityCheck.h
  3. *
  4. * Test configuration values for errors at compile-time.
  5. */
  6. #ifndef SANITYCHECK_H
  7. #define SANITYCHECK_H
  8. /**
  9. * Dual Stepper Drivers
  10. */
  11. #if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Y_DUAL_STEPPER_DRIVERS)
  12. #error You cannot have dual stepper drivers for both Y and Z.
  13. #endif
  14. /**
  15. * Progress Bar
  16. */
  17. #ifdef LCD_PROGRESS_BAR
  18. #ifndef SDSUPPORT
  19. #error LCD_PROGRESS_BAR requires SDSUPPORT.
  20. #endif
  21. #ifdef DOGLCD
  22. #error LCD_PROGRESS_BAR does not apply to graphical displays.
  23. #endif
  24. #ifdef FILAMENT_LCD_DISPLAY
  25. #error LCD_PROGRESS_BAR and FILAMENT_LCD_DISPLAY are not fully compatible. Comment out this line to use both.
  26. #endif
  27. #endif
  28. /**
  29. * Babystepping
  30. */
  31. #ifdef BABYSTEPPING
  32. #ifdef COREXY
  33. #error BABYSTEPPING not implemented for COREXY yet.
  34. #endif
  35. #ifdef SCARA
  36. #error BABYSTEPPING is not implemented for SCARA yet.
  37. #endif
  38. #if defined(DELTA) && defined(BABYSTEP_XY)
  39. #error BABYSTEPPING only implemented for Z axis on deltabots.
  40. #endif
  41. #endif
  42. /**
  43. * Filament Change with Extruder Runout Prevention
  44. */
  45. #if defined(FILAMENTCHANGEENABLE) && defined(EXTRUDER_RUNOUT_PREVENT)
  46. #error EXTRUDER_RUNOUT_PREVENT currently incompatible with FILAMENTCHANGE.
  47. #endif
  48. /**
  49. * Options only for EXTRUDERS == 1
  50. */
  51. #if EXTRUDERS > 1
  52. #if EXTRUDERS > 4
  53. #error The maximum number of EXTRUDERS in Marlin is 4.
  54. #endif
  55. #ifdef TEMP_SENSOR_1_AS_REDUNDANT
  56. #error EXTRUDERS must be 1 with TEMP_SENSOR_1_AS_REDUNDANT.
  57. #endif
  58. #ifdef HEATERS_PARALLEL
  59. #error EXTRUDERS must be 1 with HEATERS_PARALLEL.
  60. #endif
  61. #ifdef Y_DUAL_STEPPER_DRIVERS
  62. #error EXTRUDERS must be 1 with Y_DUAL_STEPPER_DRIVERS.
  63. #endif
  64. #ifdef Z_DUAL_STEPPER_DRIVERS
  65. #error EXTRUDERS must be 1 with Z_DUAL_STEPPER_DRIVERS.
  66. #endif
  67. #endif // EXTRUDERS > 1
  68. /**
  69. * Limited number of servos
  70. */
  71. #if NUM_SERVOS > 4
  72. #error The maximum number of SERVOS in Marlin is 4.
  73. #endif
  74. /**
  75. * Required LCD language
  76. */
  77. #if !defined(DOGLCD) && defined(ULTRA_LCD) && !defined(DISPLAY_CHARSET_HD44780_JAPAN) && !defined(DISPLAY_CHARSET_HD44780_WESTERN)&& !defined(DISPLAY_CHARSET_HD44780_CYRILLIC)
  78. #error You must enable either DISPLAY_CHARSET_HD44780_JAPAN or DISPLAY_CHARSET_HD44780_WESTERN or DISPLAY_CHARSET_HD44780_CYRILLIC for your LCD controller.
  79. #endif
  80. /**
  81. * Mesh Bed Leveling
  82. */
  83. #ifdef MESH_BED_LEVELING
  84. #ifdef DELTA
  85. #error MESH_BED_LEVELING does not yet support DELTA printers
  86. #endif
  87. #ifdef ENABLE_AUTO_BED_LEVELING
  88. #error Select ENABLE_AUTO_BED_LEVELING or MESH_BED_LEVELING, not both
  89. #endif
  90. #if MESH_NUM_X_POINTS > 7 || MESH_NUM_Y_POINTS > 7
  91. #error MESH_NUM_X_POINTS and MESH_NUM_Y_POINTS need to be less than 8
  92. #endif
  93. #endif
  94. /**
  95. * Auto Bed Leveling
  96. */
  97. #ifdef ENABLE_AUTO_BED_LEVELING
  98. /**
  99. * Require a Z Min pin
  100. */
  101. #if Z_MIN_PIN == -1
  102. #if Z_PROBE_PIN == -1 || (!defined(Z_PROBE_ENDSTOP) || defined(DISABLE_Z_PROBE_ENDSTOP)) // It's possible for someone to set a pin for the Z Probe, but not enable it.
  103. #ifdef Z_PROBE_REPEATABILITY_TEST
  104. #error You must have a Z_MIN or Z_PROBE endstop to enable Z_PROBE_REPEATABILITY_TEST.
  105. #else
  106. #error ENABLE_AUTO_BED_LEVELING requires a Z_MIN or Z_PROBE endstop. Z_MIN_PIN or Z_PROBE_PIN must point to a valid hardware pin.
  107. #endif
  108. #endif
  109. #endif
  110. /**
  111. * Require a Z Probe Pin if Z_PROBE_ENDSTOP is enabled.
  112. */
  113. #if defined(Z_PROBE_ENDSTOP)
  114. #ifndef Z_PROBE_PIN
  115. #error You must have a Z_PROBE_PIN defined in your pins_XXXX.h file if you enable Z_PROBE_ENDSTOP
  116. #endif
  117. #if Z_PROBE_PIN == -1
  118. #error You must set Z_PROBE_PIN to a valid pin if you enable Z_PROBE_ENDSTOP
  119. #endif
  120. // Forcing Servo definitions can break some hall effect sensor setups. Leaving these here for further comment.
  121. // #ifndef NUM_SERVOS
  122. // #error You must have NUM_SERVOS defined and there must be at least 1 configured to use Z_PROBE_ENDSTOP
  123. // #endif
  124. // #if defined(NUM_SERVOS) && NUM_SERVOS < 1
  125. // #error You must have at least 1 servo defined for NUM_SERVOS to use Z_PROBE_ENDSTOP
  126. // #endif
  127. // #ifndef SERVO_ENDSTOPS
  128. // #error You must have SERVO_ENDSTOPS defined and have the Z index set to at least 0 or above to use Z_PROBE_ENDSTOP
  129. // #endif
  130. // #ifndef SERVO_ENDSTOP_ANGLES
  131. // #error You must have SERVO_ENDSTOP_ANGLES defined for Z Extend and Retract to use Z_PROBE_AND_ENSTOP
  132. // #endif
  133. #endif
  134. /**
  135. * Check if Probe_Offset * Grid Points is greater than Probing Range
  136. */
  137. #ifdef AUTO_BED_LEVELING_GRID
  138. #ifndef DELTA_PROBABLE_RADIUS
  139. // Make sure probing points are reachable
  140. #if LEFT_PROBE_BED_POSITION < MIN_PROBE_X
  141. #error "The given LEFT_PROBE_BED_POSITION can't be reached by the probe."
  142. #elif RIGHT_PROBE_BED_POSITION > MAX_PROBE_X
  143. #error "The given RIGHT_PROBE_BED_POSITION can't be reached by the probe."
  144. #elif FRONT_PROBE_BED_POSITION < MIN_PROBE_Y
  145. #error "The given FRONT_PROBE_BED_POSITION can't be reached by the probe."
  146. #elif BACK_PROBE_BED_POSITION > MAX_PROBE_Y
  147. #error "The given BACK_PROBE_BED_POSITION can't be reached by the probe."
  148. #endif
  149. #endif
  150. #define PROBE_SIZE_X (X_PROBE_OFFSET_FROM_EXTRUDER * (AUTO_BED_LEVELING_GRID_POINTS-1))
  151. #define PROBE_SIZE_Y (Y_PROBE_OFFSET_FROM_EXTRUDER * (AUTO_BED_LEVELING_GRID_POINTS-1))
  152. #define PROBE_AREA_WIDTH (RIGHT_PROBE_BED_POSITION - LEFT_PROBE_BED_POSITION)
  153. #define PROBE_AREA_DEPTH (BACK_PROBE_BED_POSITION - FRONT_PROBE_BED_POSITION)
  154. #if X_PROBE_OFFSET_FROM_EXTRUDER < 0
  155. #if PROBE_SIZE_X <= -PROBE_AREA_WIDTH
  156. #define X_PROBE_ERROR
  157. #endif
  158. #elif PROBE_SIZE_X >= PROBE_AREA_WIDTH
  159. #define X_PROBE_ERROR
  160. #endif
  161. #ifdef X_PROBE_ERROR
  162. #error The X axis probing range is too small to fit all the points defined in AUTO_BED_LEVELING_GRID_POINTS
  163. #endif
  164. #if Y_PROBE_OFFSET_FROM_EXTRUDER < 0
  165. #if PROBE_SIZE_Y <= -PROBE_AREA_DEPTH
  166. #define Y_PROBE_ERROR
  167. #endif
  168. #elif PROBE_SIZE_Y >= PROBE_AREA_DEPTH
  169. #define Y_PROBE_ERROR
  170. #endif
  171. #ifdef Y_PROBE_ERROR
  172. #error The Y axis probing range is too small to fit all the points defined in AUTO_BED_LEVELING_GRID_POINTS
  173. #endif
  174. #undef PROBE_SIZE_X
  175. #undef PROBE_SIZE_Y
  176. #undef PROBE_AREA_WIDTH
  177. #undef PROBE_AREA_DEPTH
  178. #else // !AUTO_BED_LEVELING_GRID
  179. // Check the triangulation points
  180. #if ABL_PROBE_PT_1_X < MIN_PROBE_X || ABL_PROBE_PT_1_X > MAX_PROBE_X
  181. #error "The given ABL_PROBE_PT_1_X can't be reached by the probe."
  182. #elif ABL_PROBE_PT_2_X < MIN_PROBE_X || ABL_PROBE_PT_2_X > MAX_PROBE_X
  183. #error "The given ABL_PROBE_PT_2_X can't be reached by the probe."
  184. #elif ABL_PROBE_PT_3_X < MIN_PROBE_X || ABL_PROBE_PT_3_X > MAX_PROBE_X
  185. #error "The given ABL_PROBE_PT_3_X can't be reached by the probe."
  186. #elif ABL_PROBE_PT_1_Y < MIN_PROBE_Y || ABL_PROBE_PT_1_Y > MAX_PROBE_Y
  187. #error "The given ABL_PROBE_PT_1_Y can't be reached by the probe."
  188. #elif ABL_PROBE_PT_2_Y < MIN_PROBE_Y || ABL_PROBE_PT_2_Y > MAX_PROBE_Y
  189. #error "The given ABL_PROBE_PT_2_Y can't be reached by the probe."
  190. #elif ABL_PROBE_PT_3_Y < MIN_PROBE_Y || ABL_PROBE_PT_3_Y > MAX_PROBE_Y
  191. #error "The given ABL_PROBE_PT_3_Y can't be reached by the probe."
  192. #endif
  193. #endif // !AUTO_BED_LEVELING_GRID
  194. #endif // ENABLE_AUTO_BED_LEVELING
  195. /**
  196. * ULTIPANEL encoder
  197. */
  198. #if defined(ULTIPANEL) && !defined(NEWPANEL) && !defined(SR_LCD_2W_NL) && !defined(SHIFT_CLK)
  199. #error ULTIPANEL requires some kind of encoder.
  200. #endif
  201. /**
  202. * Delta has limited bed leveling options
  203. */
  204. #ifdef DELTA
  205. #ifdef ENABLE_AUTO_BED_LEVELING
  206. #ifndef AUTO_BED_LEVELING_GRID
  207. #error Only AUTO_BED_LEVELING_GRID is supported with DELTA.
  208. #endif
  209. #ifdef Z_PROBE_SLED
  210. #error You cannot use Z_PROBE_SLED with DELTA.
  211. #endif
  212. #ifdef Z_PROBE_REPEATABILITY_TEST
  213. #error Z_PROBE_REPEATABILITY_TEST is not supported with DELTA yet.
  214. #endif
  215. #endif
  216. #endif
  217. /**
  218. * Allen Key Z Probe requires Auto Bed Leveling grid and Delta
  219. */
  220. #if defined(Z_PROBE_ALLEN_KEY) && !(defined(AUTO_BED_LEVELING_GRID) && defined(DELTA))
  221. #error Invalid use of Z_PROBE_ALLEN_KEY.
  222. #endif
  223. /**
  224. * Dual X Carriage requirements
  225. */
  226. #ifdef DUAL_X_CARRIAGE
  227. #if EXTRUDERS == 1 || defined(COREXY) \
  228. || !HAS_X2_ENABLE || !HAS_X2_STEP || !HAS_X2_DIR \
  229. || !defined(X2_HOME_POS) || !defined(X2_MIN_POS) || !defined(X2_MAX_POS) \
  230. || !HAS_X_MAX
  231. #error Missing or invalid definitions for DUAL_X_CARRIAGE mode.
  232. #endif
  233. #if X_HOME_DIR != -1 || X2_HOME_DIR != 1
  234. #error Please use canonical x-carriage assignment.
  235. #endif
  236. #endif // DUAL_X_CARRIAGE
  237. /**
  238. * Make sure auto fan pins don't conflict with the fan pin
  239. */
  240. #if HAS_AUTO_FAN && HAS_FAN
  241. #if EXTRUDER_0_AUTO_FAN_PIN == FAN_PIN
  242. #error You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to FAN_PIN
  243. #elif EXTRUDER_1_AUTO_FAN_PIN == FAN_PIN
  244. #error You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to FAN_PIN
  245. #elif EXTRUDER_2_AUTO_FAN_PIN == FAN_PIN
  246. #error You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to FAN_PIN
  247. #elif EXTRUDER_3_AUTO_FAN_PIN == FAN_PIN
  248. #error You cannot set EXTRUDER_3_AUTO_FAN_PIN equal to FAN_PIN
  249. #endif
  250. #endif
  251. #if HAS_FAN && CONTROLLERFAN_PIN == FAN_PIN
  252. #error You cannot set CONTROLLERFAN_PIN equal to FAN_PIN
  253. #endif
  254. /**
  255. * Test required HEATER defines
  256. */
  257. #if EXTRUDERS > 3
  258. #if !HAS_HEATER_3
  259. #error HEATER_3_PIN not defined for this board
  260. #endif
  261. #elif EXTRUDERS > 2
  262. #if !HAS_HEATER_2
  263. #error HEATER_2_PIN not defined for this board
  264. #endif
  265. #elif EXTRUDERS > 1 || defined(HEATERS_PARALLEL)
  266. #if !HAS_HEATER_1
  267. #error HEATER_1_PIN not defined for this board
  268. #endif
  269. #endif
  270. #if !HAS_HEATER_0
  271. #error HEATER_0_PIN not defined for this board
  272. #endif
  273. /**
  274. * Warnings for old configurations
  275. */
  276. #ifdef X_HOME_RETRACT_MM
  277. #error [XYZ]_HOME_RETRACT_MM settings have been renamed [XYZ]_HOME_BUMP_MM
  278. #endif
  279. #if WATCH_TEMP_PERIOD > 500
  280. #error WATCH_TEMP_PERIOD now uses seconds instead of milliseconds
  281. #endif
  282. #if !defined(THERMAL_PROTECTION_HOTENDS) && (defined(WATCH_TEMP_PERIOD) || defined(THERMAL_PROTECTION_PERIOD))
  283. #error Thermal Runaway Protection for hotends must now be enabled with THERMAL_PROTECTION_HOTENDS
  284. #endif
  285. #if !defined(THERMAL_PROTECTION_BED) && defined(THERMAL_PROTECTION_BED_PERIOD)
  286. #error Thermal Runaway Protection for the bed must now be enabled with THERMAL_PROTECTION_BED
  287. #endif
  288. #endif //SANITYCHECK_H