My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

stepper_indirection.h 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  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. stepper_indirection.h - stepper motor driver indirection macros
  24. to allow some stepper functions to be done via SPI/I2c instead of direct pin manipulation
  25. Part of Marlin
  26. Copyright (c) 2015 Dominik Wenger
  27. Marlin is free software: you can redistribute it and/or modify
  28. it under the terms of the GNU General Public License as published by
  29. the Free Software Foundation, either version 3 of the License, or
  30. (at your option) any later version.
  31. Marlin is distributed in the hope that it will be useful,
  32. but WITHOUT ANY WARRANTY; without even the implied warranty of
  33. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  34. GNU General Public License for more details.
  35. You should have received a copy of the GNU General Public License
  36. along with Marlin. If not, see <http://www.gnu.org/licenses/>.
  37. */
  38. #ifndef STEPPER_INDIRECTION_H
  39. #define STEPPER_INDIRECTION_H
  40. #include "macros.h"
  41. // X motor
  42. #define X_STEP_INIT SET_OUTPUT(X_STEP_PIN)
  43. #define X_STEP_WRITE(STATE) WRITE(X_STEP_PIN,STATE)
  44. #define X_STEP_READ READ(X_STEP_PIN)
  45. #define X_DIR_INIT SET_OUTPUT(X_DIR_PIN)
  46. #define X_DIR_WRITE(STATE) WRITE(X_DIR_PIN,STATE)
  47. #define X_DIR_READ READ(X_DIR_PIN)
  48. #define X_ENABLE_INIT SET_OUTPUT(X_ENABLE_PIN)
  49. #define X_ENABLE_WRITE(STATE) WRITE(X_ENABLE_PIN,STATE)
  50. #define X_ENABLE_READ READ(X_ENABLE_PIN)
  51. // X2 motor
  52. #define X2_STEP_INIT SET_OUTPUT(X2_STEP_PIN)
  53. #define X2_STEP_WRITE(STATE) WRITE(X2_STEP_PIN,STATE)
  54. #define X2_STEP_READ READ(X2_STEP_PIN)
  55. #define X2_DIR_INIT SET_OUTPUT(X2_DIR_PIN)
  56. #define X2_DIR_WRITE(STATE) WRITE(X2_DIR_PIN,STATE)
  57. #define X2_DIR_READ READ(X_DIR_PIN)
  58. #define X2_ENABLE_INIT SET_OUTPUT(X2_ENABLE_PIN)
  59. #define X2_ENABLE_WRITE(STATE) WRITE(X2_ENABLE_PIN,STATE)
  60. #define X2_ENABLE_READ READ(X_ENABLE_PIN)
  61. // Y motor
  62. #define Y_STEP_INIT SET_OUTPUT(Y_STEP_PIN)
  63. #define Y_STEP_WRITE(STATE) WRITE(Y_STEP_PIN,STATE)
  64. #define Y_STEP_READ READ(Y_STEP_PIN)
  65. #define Y_DIR_INIT SET_OUTPUT(Y_DIR_PIN)
  66. #define Y_DIR_WRITE(STATE) WRITE(Y_DIR_PIN,STATE)
  67. #define Y_DIR_READ READ(Y_DIR_PIN)
  68. #define Y_ENABLE_INIT SET_OUTPUT(Y_ENABLE_PIN)
  69. #define Y_ENABLE_WRITE(STATE) WRITE(Y_ENABLE_PIN,STATE)
  70. #define Y_ENABLE_READ READ(Y_ENABLE_PIN)
  71. // Y2 motor
  72. #define Y2_STEP_INIT SET_OUTPUT(Y2_STEP_PIN)
  73. #define Y2_STEP_WRITE(STATE) WRITE(Y2_STEP_PIN,STATE)
  74. #define Y2_STEP_READ READ(Y2_STEP_PIN)
  75. #define Y2_DIR_INIT SET_OUTPUT(Y2_DIR_PIN)
  76. #define Y2_DIR_WRITE(STATE) WRITE(Y2_DIR_PIN,STATE)
  77. #define Y2_DIR_READ READ(Y2_DIR_PIN)
  78. #define Y2_ENABLE_INIT SET_OUTPUT(Y2_ENABLE_PIN)
  79. #define Y2_ENABLE_WRITE(STATE) WRITE(Y2_ENABLE_PIN,STATE)
  80. #define Y2_ENABLE_READ READ(Y2_ENABLE_PIN)
  81. // Z motor
  82. #define Z_STEP_INIT SET_OUTPUT(Z_STEP_PIN)
  83. #define Z_STEP_WRITE(STATE) WRITE(Z_STEP_PIN,STATE)
  84. #define Z_STEP_READ READ(Z_STEP_PIN)
  85. #define Z_DIR_INIT SET_OUTPUT(Z_DIR_PIN)
  86. #define Z_DIR_WRITE(STATE) WRITE(Z_DIR_PIN,STATE)
  87. #define Z_DIR_READ READ(Z_DIR_PIN)
  88. #define Z_ENABLE_INIT SET_OUTPUT(Z_ENABLE_PIN)
  89. #define Z_ENABLE_WRITE(STATE) WRITE(Z_ENABLE_PIN,STATE)
  90. #define Z_ENABLE_READ READ(Z_ENABLE_PIN)
  91. // Z2 motor
  92. #define Z2_STEP_INIT SET_OUTPUT(Z2_STEP_PIN)
  93. #define Z2_STEP_WRITE(STATE) WRITE(Z2_STEP_PIN,STATE)
  94. #define Z2_STEP_READ READ(Z2_STEP_PIN)
  95. #define Z2_DIR_INIT SET_OUTPUT(Z2_DIR_PIN)
  96. #define Z2_DIR_WRITE(STATE) WRITE(Z2_DIR_PIN,STATE)
  97. #define Z2_DIR_READ READ(Z2_DIR_PIN)
  98. #define Z2_ENABLE_INIT SET_OUTPUT(Z2_ENABLE_PIN)
  99. #define Z2_ENABLE_WRITE(STATE) WRITE(Z2_ENABLE_PIN,STATE)
  100. #define Z2_ENABLE_READ READ(Z2_ENABLE_PIN)
  101. // E0 motor
  102. #define E0_STEP_INIT SET_OUTPUT(E0_STEP_PIN)
  103. #define E0_STEP_WRITE(STATE) WRITE(E0_STEP_PIN,STATE)
  104. #define E0_STEP_READ READ(E0_STEP_PIN)
  105. #define E0_DIR_INIT SET_OUTPUT(E0_DIR_PIN)
  106. #define E0_DIR_WRITE(STATE) WRITE(E0_DIR_PIN,STATE)
  107. #define E0_DIR_READ READ(E0_DIR_PIN)
  108. #define E0_ENABLE_INIT SET_OUTPUT(E0_ENABLE_PIN)
  109. #define E0_ENABLE_WRITE(STATE) WRITE(E0_ENABLE_PIN,STATE)
  110. #define E0_ENABLE_READ READ(E0_ENABLE_PIN)
  111. // E1 motor
  112. #define E1_STEP_INIT SET_OUTPUT(E1_STEP_PIN)
  113. #define E1_STEP_WRITE(STATE) WRITE(E1_STEP_PIN,STATE)
  114. #define E1_STEP_READ READ(E1_STEP_PIN)
  115. #define E1_DIR_INIT SET_OUTPUT(E1_DIR_PIN)
  116. #define E1_DIR_WRITE(STATE) WRITE(E1_DIR_PIN,STATE)
  117. #define E1_DIR_READ READ(E1_DIR_PIN)
  118. #define E1_ENABLE_INIT SET_OUTPUT(E1_ENABLE_PIN)
  119. #define E1_ENABLE_WRITE(STATE) WRITE(E1_ENABLE_PIN,STATE)
  120. #define E1_ENABLE_READ READ(E1_ENABLE_PIN)
  121. // E2 motor
  122. #define E2_STEP_INIT SET_OUTPUT(E2_STEP_PIN)
  123. #define E2_STEP_WRITE(STATE) WRITE(E2_STEP_PIN,STATE)
  124. #define E2_STEP_READ READ(E2_STEP_PIN)
  125. #define E2_DIR_INIT SET_OUTPUT(E2_DIR_PIN)
  126. #define E2_DIR_WRITE(STATE) WRITE(E2_DIR_PIN,STATE)
  127. #define E2_DIR_READ READ(E2_DIR_PIN)
  128. #define E2_ENABLE_INIT SET_OUTPUT(E2_ENABLE_PIN)
  129. #define E2_ENABLE_WRITE(STATE) WRITE(E2_ENABLE_PIN,STATE)
  130. #define E2_ENABLE_READ READ(E2_ENABLE_PIN)
  131. // E3 motor
  132. #define E3_STEP_INIT SET_OUTPUT(E3_STEP_PIN)
  133. #define E3_STEP_WRITE(STATE) WRITE(E3_STEP_PIN,STATE)
  134. #define E3_STEP_READ READ(E3_STEP_PIN)
  135. #define E3_DIR_INIT SET_OUTPUT(E3_DIR_PIN)
  136. #define E3_DIR_WRITE(STATE) WRITE(E3_DIR_PIN,STATE)
  137. #define E3_DIR_READ READ(E3_DIR_PIN)
  138. #define E3_ENABLE_INIT SET_OUTPUT(E3_ENABLE_PIN)
  139. #define E3_ENABLE_WRITE(STATE) WRITE(E3_ENABLE_PIN,STATE)
  140. #define E3_ENABLE_READ READ(E3_ENABLE_PIN)
  141. #if EXTRUDERS > 3
  142. #define E_STEP_WRITE(v) {switch(current_block->active_extruder){case 3:E3_STEP_WRITE(v);break;case 2:E2_STEP_WRITE(v);break;case 1:E1_STEP_WRITE(v);break;default:E0_STEP_WRITE(v);}}
  143. #define NORM_E_DIR() {switch(current_block->active_extruder){case 3:E3_DIR_WRITE(!INVERT_E3_DIR);break;case 2:E2_DIR_WRITE(!INVERT_E2_DIR);break;case 1:E1_DIR_WRITE(!INVERT_E1_DIR);break;default:E0_DIR_WRITE(!INVERT_E0_DIR);}}
  144. #define REV_E_DIR() {switch(current_block->active_extruder){case 3:E3_DIR_WRITE(INVERT_E3_DIR);break;case 2:E2_DIR_WRITE(INVERT_E2_DIR);break;case 1:E1_DIR_WRITE(INVERT_E1_DIR);break;default:E0_DIR_WRITE(INVERT_E0_DIR);}}
  145. #elif EXTRUDERS > 2
  146. #define E_STEP_WRITE(v) {switch(current_block->active_extruder){case 2:E2_STEP_WRITE(v);break;case 1:E1_STEP_WRITE(v);break;default:E0_STEP_WRITE(v);}}
  147. #define NORM_E_DIR() {switch(current_block->active_extruder){case 2:E2_DIR_WRITE(!INVERT_E2_DIR);break;case 1:E1_DIR_WRITE(!INVERT_E1_DIR);break;default:E0_DIR_WRITE(!INVERT_E0_DIR);}}
  148. #define REV_E_DIR() {switch(current_block->active_extruder){case 2:E2_DIR_WRITE(INVERT_E2_DIR);break;case 1:E1_DIR_WRITE(INVERT_E1_DIR);break;default:E0_DIR_WRITE(INVERT_E0_DIR);}}
  149. #elif EXTRUDERS > 1
  150. #define _E_STEP_WRITE(v) {if(current_block->active_extruder==1){E1_STEP_WRITE(v);}else{E0_STEP_WRITE(v);}}
  151. #define _NORM_E_DIR() {if(current_block->active_extruder==1){E1_DIR_WRITE(!INVERT_E1_DIR);}else{E0_DIR_WRITE(!INVERT_E0_DIR);}}
  152. #define _REV_E_DIR() {if(current_block->active_extruder==1){E1_DIR_WRITE(INVERT_E1_DIR);}else{E0_DIR_WRITE(INVERT_E0_DIR);}}
  153. #if DISABLED(DUAL_X_CARRIAGE)
  154. #define E_STEP_WRITE(v) _E_STEP_WRITE(v)
  155. #define NORM_E_DIR() _NORM_E_DIR()
  156. #define REV_E_DIR() _REV_E_DIR()
  157. #else
  158. #define E_STEP_WRITE(v) {if(extruder_duplication_enabled){E0_STEP_WRITE(v);E1_STEP_WRITE(v);}else _E_STEP_WRITE(v);}
  159. #define NORM_E_DIR() {if(extruder_duplication_enabled){E0_DIR_WRITE(!INVERT_E0_DIR);E1_DIR_WRITE(!INVERT_E1_DIR);}else _NORM_E_DIR();}
  160. #define REV_E_DIR() {if(extruder_duplication_enabled){E0_DIR_WRITE(INVERT_E0_DIR);E1_DIR_WRITE(INVERT_E1_DIR);}else _REV_E_DIR();}
  161. #endif
  162. #else
  163. #define E_STEP_WRITE(v) E0_STEP_WRITE(v)
  164. #define NORM_E_DIR() E0_DIR_WRITE(!INVERT_E0_DIR)
  165. #define REV_E_DIR() E0_DIR_WRITE(INVERT_E0_DIR)
  166. #endif
  167. //////////////////////////////////
  168. // Pin redefines for TMC drivers.
  169. // TMC26X drivers have step and dir on normal pins, but everything else via SPI
  170. //////////////////////////////////
  171. #if ENABLED(HAVE_TMCDRIVER)
  172. #include <SPI.h>
  173. #include <TMC26XStepper.h>
  174. void tmc_init();
  175. #if ENABLED(X_IS_TMC)
  176. extern TMC26XStepper stepperX;
  177. #undef X_ENABLE_INIT
  178. #define X_ENABLE_INIT ((void)0)
  179. #undef X_ENABLE_WRITE
  180. #define X_ENABLE_WRITE(STATE) stepperX.setEnabled(STATE)
  181. #undef X_ENABLE_READ
  182. #define X_ENABLE_READ stepperX.isEnabled()
  183. #endif
  184. #if ENABLED(X2_IS_TMC)
  185. extern TMC26XStepper stepperX2;
  186. #undef X2_ENABLE_INIT
  187. #define X2_ENABLE_INIT ((void)0)
  188. #undef X2_ENABLE_WRITE
  189. #define X2_ENABLE_WRITE(STATE) stepperX2.setEnabled(STATE)
  190. #undef X2_ENABLE_READ
  191. #define X2_ENABLE_READ stepperX2.isEnabled()
  192. #endif
  193. #if ENABLED(Y_IS_TMC)
  194. extern TMC26XStepper stepperY;
  195. #undef Y_ENABLE_INIT
  196. #define Y_ENABLE_INIT ((void)0)
  197. #undef Y_ENABLE_WRITE
  198. #define Y_ENABLE_WRITE(STATE) stepperY.setEnabled(STATE)
  199. #undef Y_ENABLE_READ
  200. #define Y_ENABLE_READ stepperY.isEnabled()
  201. #endif
  202. #if ENABLED(Y2_IS_TMC)
  203. extern TMC26XStepper stepperY2;
  204. #undef Y2_ENABLE_INIT
  205. #define Y2_ENABLE_INIT ((void)0)
  206. #undef Y2_ENABLE_WRITE
  207. #define Y2_ENABLE_WRITE(STATE) stepperY2.setEnabled(STATE)
  208. #undef Y2_ENABLE_READ
  209. #define Y2_ENABLE_READ stepperY2.isEnabled()
  210. #endif
  211. #if ENABLED(Z_IS_TMC)
  212. extern TMC26XStepper stepperZ;
  213. #undef Z_ENABLE_INIT
  214. #define Z_ENABLE_INIT ((void)0)
  215. #undef Z_ENABLE_WRITE
  216. #define Z_ENABLE_WRITE(STATE) stepperZ.setEnabled(STATE)
  217. #undef Z_ENABLE_READ
  218. #define Z_ENABLE_READ stepperZ.isEnabled()
  219. #endif
  220. #if ENABLED(Z2_IS_TMC)
  221. extern TMC26XStepper stepperZ2;
  222. #undef Z2_ENABLE_INIT
  223. #define Z2_ENABLE_INIT ((void)0)
  224. #undef Z2_ENABLE_WRITE
  225. #define Z2_ENABLE_WRITE(STATE) stepperZ2.setEnabled(STATE)
  226. #undef Z2_ENABLE_READ
  227. #define Z2_ENABLE_READ stepperZ2.isEnabled()
  228. #endif
  229. #if ENABLED(E0_IS_TMC)
  230. extern TMC26XStepper stepperE0;
  231. #undef E0_ENABLE_INIT
  232. #define E0_ENABLE_INIT ((void)0)
  233. #undef E0_ENABLE_WRITE
  234. #define E0_ENABLE_WRITE(STATE) stepperE0.setEnabled(STATE)
  235. #undef E0_ENABLE_READ
  236. #define E0_ENABLE_READ stepperE0.isEnabled()
  237. #endif
  238. #if ENABLED(E1_IS_TMC)
  239. extern TMC26XStepper stepperE1;
  240. #undef E1_ENABLE_INIT
  241. #define E1_ENABLE_INIT ((void)0)
  242. #undef E1_ENABLE_WRITE
  243. #define E1_ENABLE_WRITE(STATE) stepperE1.setEnabled(STATE)
  244. #undef E1_ENABLE_READ
  245. #define E1_ENABLE_READ stepperE1.isEnabled()
  246. #endif
  247. #if ENABLED(E2_IS_TMC)
  248. extern TMC26XStepper stepperE2;
  249. #undef E2_ENABLE_INIT
  250. #define E2_ENABLE_INIT ((void)0)
  251. #undef E2_ENABLE_WRITE
  252. #define E2_ENABLE_WRITE(STATE) stepperE2.setEnabled(STATE)
  253. #undef E2_ENABLE_READ
  254. #define E2_ENABLE_READ stepperE2.isEnabled()
  255. #endif
  256. #if ENABLED(E3_IS_TMC)
  257. extern TMC26XStepper stepperE3;
  258. #undef E3_ENABLE_INIT
  259. #define E3_ENABLE_INIT ((void)0)
  260. #undef E3_ENABLE_WRITE
  261. #define E3_ENABLE_WRITE(STATE) stepperE3.setEnabled(STATE)
  262. #undef E3_ENABLE_READ
  263. #define E3_ENABLE_READ stepperE3.isEnabled()
  264. #endif
  265. #endif // HAVE_TMCDRIVER
  266. //////////////////////////////////
  267. // Pin redefines for L6470 drivers.
  268. // L640 drivers have step on normal pins, but dir and everything else via SPI
  269. //////////////////////////////////
  270. #if ENABLED(HAVE_L6470DRIVER)
  271. #include <SPI.h>
  272. #include <L6470.h>
  273. void L6470_init();
  274. #if ENABLED(X_IS_L6470)
  275. extern L6470 stepperX;
  276. #undef X_ENABLE_INIT
  277. #define X_ENABLE_INIT ((void)0)
  278. #undef X_ENABLE_WRITE
  279. #define X_ENABLE_WRITE(STATE) {if(STATE) stepperX.Step_Clock(stepperX.getStatus() & STATUS_HIZ); else stepperX.softFree();}
  280. #undef X_ENABLE_READ
  281. #define X_ENABLE_READ (stepperX.getStatus() & STATUS_HIZ)
  282. #undef X_DIR_INIT
  283. #define X_DIR_INIT ((void)0)
  284. #undef X_DIR_WRITE
  285. #define X_DIR_WRITE(STATE) stepperX.Step_Clock(STATE)
  286. #undef X_DIR_READ
  287. #define X_DIR_READ (stepperX.getStatus() & STATUS_DIR)
  288. #endif
  289. #if ENABLED(X2_IS_L6470)
  290. extern L6470 stepperX2;
  291. #undef X2_ENABLE_INIT
  292. #define X2_ENABLE_INIT ((void)0)
  293. #undef X2_ENABLE_WRITE
  294. #define X2_ENABLE_WRITE(STATE) (if(STATE) stepperX2.Step_Clock(stepperX2.getStatus() & STATUS_HIZ); else stepperX2.softFree();)
  295. #undef X2_ENABLE_READ
  296. #define X2_ENABLE_READ (stepperX2.getStatus() & STATUS_HIZ)
  297. #undef X2_DIR_INIT
  298. #define X2_DIR_INIT ((void)0)
  299. #undef X2_DIR_WRITE
  300. #define X2_DIR_WRITE(STATE) stepperX2.Step_Clock(STATE)
  301. #undef X2_DIR_READ
  302. #define X2_DIR_READ (stepperX2.getStatus() & STATUS_DIR)
  303. #endif
  304. #if ENABLED(Y_IS_L6470)
  305. extern L6470 stepperY;
  306. #undef Y_ENABLE_INIT
  307. #define Y_ENABLE_INIT ((void)0)
  308. #undef Y_ENABLE_WRITE
  309. #define Y_ENABLE_WRITE(STATE) (if(STATE) stepperY.Step_Clock(stepperY.getStatus() & STATUS_HIZ); else stepperY.softFree();)
  310. #undef Y_ENABLE_READ
  311. #define Y_ENABLE_READ (stepperY.getStatus() & STATUS_HIZ)
  312. #undef Y_DIR_INIT
  313. #define Y_DIR_INIT ((void)0)
  314. #undef Y_DIR_WRITE
  315. #define Y_DIR_WRITE(STATE) stepperY.Step_Clock(STATE)
  316. #undef Y_DIR_READ
  317. #define Y_DIR_READ (stepperY.getStatus() & STATUS_DIR)
  318. #endif
  319. #if ENABLED(Y2_IS_L6470)
  320. extern L6470 stepperY2;
  321. #undef Y2_ENABLE_INIT
  322. #define Y2_ENABLE_INIT ((void)0)
  323. #undef Y2_ENABLE_WRITE
  324. #define Y2_ENABLE_WRITE(STATE) (if(STATE) stepperY2.Step_Clock(stepperY2.getStatus() & STATUS_HIZ); else stepperY2.softFree();)
  325. #undef Y2_ENABLE_READ
  326. #define Y2_ENABLE_READ (stepperY2.getStatus() & STATUS_HIZ)
  327. #undef Y2_DIR_INIT
  328. #define Y2_DIR_INIT ((void)0)
  329. #undef Y2_DIR_WRITE
  330. #define Y2_DIR_WRITE(STATE) stepperY2.Step_Clock(STATE)
  331. #undef Y2_DIR_READ
  332. #define Y2_DIR_READ (stepperY2.getStatus() & STATUS_DIR)
  333. #endif
  334. #if ENABLED(Z_IS_L6470)
  335. extern L6470 stepperZ;
  336. #undef Z_ENABLE_INIT
  337. #define Z_ENABLE_INIT ((void)0)
  338. #undef Z_ENABLE_WRITE
  339. #define Z_ENABLE_WRITE(STATE) (if(STATE) stepperZ.Step_Clock(stepperZ.getStatus() & STATUS_HIZ); else stepperZ.softFree();)
  340. #undef Z_ENABLE_READ
  341. #define Z_ENABLE_READ (stepperZ.getStatus() & STATUS_HIZ)
  342. #undef Z_DIR_INIT
  343. #define Z_DIR_INIT ((void)0)
  344. #undef Z_DIR_WRITE
  345. #define Z_DIR_WRITE(STATE) stepperZ.Step_Clock(STATE)
  346. #undef Y_DIR_READ
  347. #define Y_DIR_READ (stepperZ.getStatus() & STATUS_DIR)
  348. #endif
  349. #if ENABLED(Z2_IS_L6470)
  350. extern L6470 stepperZ2;
  351. #undef Z2_ENABLE_INIT
  352. #define Z2_ENABLE_INIT ((void)0)
  353. #undef Z2_ENABLE_WRITE
  354. #define Z2_ENABLE_WRITE(STATE) (if(STATE) stepperZ2.Step_Clock(stepperZ2.getStatus() & STATUS_HIZ); else stepperZ2.softFree();)
  355. #undef Z2_ENABLE_READ
  356. #define Z2_ENABLE_READ (stepperZ2.getStatus() & STATUS_HIZ)
  357. #undef Z2_DIR_INIT
  358. #define Z2_DIR_INIT ((void)0)
  359. #undef Z2_DIR_WRITE
  360. #define Z2_DIR_WRITE(STATE) stepperZ2.Step_Clock(STATE)
  361. #undef Y2_DIR_READ
  362. #define Y2_DIR_READ (stepperZ2.getStatus() & STATUS_DIR)
  363. #endif
  364. #if ENABLED(E0_IS_L6470)
  365. extern L6470 stepperE0;
  366. #undef E0_ENABLE_INIT
  367. #define E0_ENABLE_INIT ((void)0)
  368. #undef E0_ENABLE_WRITE
  369. #define E0_ENABLE_WRITE(STATE) (if(STATE) stepperE0.Step_Clock(stepperE0.getStatus() & STATUS_HIZ); else stepperE0.softFree();)
  370. #undef E0_ENABLE_READ
  371. #define E0_ENABLE_READ (stepperE0.getStatus() & STATUS_HIZ)
  372. #undef E0_DIR_INIT
  373. #define E0_DIR_INIT ((void)0)
  374. #undef E0_DIR_WRITE
  375. #define E0_DIR_WRITE(STATE) stepperE0.Step_Clock(STATE)
  376. #undef E0_DIR_READ
  377. #define E0_DIR_READ (stepperE0.getStatus() & STATUS_DIR)
  378. #endif
  379. #if ENABLED(E1_IS_L6470)
  380. extern L6470 stepperE1;
  381. #undef E1_ENABLE_INIT
  382. #define E1_ENABLE_INIT ((void)0)
  383. #undef E1_ENABLE_WRITE
  384. #define E1_ENABLE_WRITE(STATE) (if(STATE) stepperE1.Step_Clock(stepperE1.getStatus() & STATUS_HIZ); else stepperE1.softFree();)
  385. #undef E1_ENABLE_READ
  386. #define E1_ENABLE_READ (stepperE1.getStatus() & STATUS_HIZ)
  387. #undef E1_DIR_INIT
  388. #define E1_DIR_INIT ((void)0)
  389. #undef E1_DIR_WRITE
  390. #define E1_DIR_WRITE(STATE) stepperE1.Step_Clock(STATE)
  391. #undef E1_DIR_READ
  392. #define E1_DIR_READ (stepperE1.getStatus() & STATUS_DIR)
  393. #endif
  394. #if ENABLED(E2_IS_L6470)
  395. extern L6470 stepperE2;
  396. #undef E2_ENABLE_INIT
  397. #define E2_ENABLE_INIT ((void)0)
  398. #undef E2_ENABLE_WRITE
  399. #define E2_ENABLE_WRITE(STATE) (if(STATE) stepperE2.Step_Clock(stepperE2.getStatus() & STATUS_HIZ); else stepperE2.softFree();)
  400. #undef E2_ENABLE_READ
  401. #define E2_ENABLE_READ (stepperE2.getStatus() & STATUS_HIZ)
  402. #undef E2_DIR_INIT
  403. #define E2_DIR_INIT ((void)0)
  404. #undef E2_DIR_WRITE
  405. #define E2_DIR_WRITE(STATE) stepperE2.Step_Clock(STATE)
  406. #undef E2_DIR_READ
  407. #define E2_DIR_READ (stepperE2.getStatus() & STATUS_DIR)
  408. #endif
  409. #if ENABLED(E3_IS_L6470)
  410. extern L6470 stepperE3;
  411. #undef E3_ENABLE_INIT
  412. #define E3_ENABLE_INIT ((void)0)
  413. #undef E3_ENABLE_WRITE
  414. #define E3_ENABLE_WRITE(STATE) (if(STATE) stepperE3.Step_Clock(stepperE3.getStatus() & STATUS_HIZ); else stepperE3.softFree();)
  415. #undef E3_ENABLE_READ
  416. #define E3_ENABLE_READ (stepperE3.getStatus() & STATUS_HIZ)
  417. #undef E3_DIR_INIT
  418. #define E3_DIR_INIT ((void)0)
  419. #undef E3_DIR_WRITE
  420. #define E3_DIR_WRITE(STATE) stepperE3.Step_Clock(STATE)
  421. #undef E3_DIR_READ
  422. #define E3_DIR_READ (stepperE3.getStatus() & STATUS_DIR)
  423. #endif
  424. #endif //HAVE_L6470DRIVER
  425. #endif // STEPPER_INDIRECTION_H