My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

tmc_util.h 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #include "../inc/MarlinConfig.h"
  24. #include "../lcd/ultralcd.h"
  25. #if HAS_TRINAMIC_CONFIG
  26. #include <TMCStepper.h>
  27. #include "../module/planner.h"
  28. #define CHOPPER_DEFAULT_12V { 3, -1, 1 }
  29. #define CHOPPER_DEFAULT_19V { 4, 1, 1 }
  30. #define CHOPPER_DEFAULT_24V { 4, 2, 1 }
  31. #define CHOPPER_DEFAULT_36V { 5, 2, 4 }
  32. #define CHOPPER_PRUSAMK3_24V { 3, -2, 6 }
  33. #define CHOPPER_MARLIN_119 { 5, 2, 3 }
  34. #define CHOPPER_09STEP_24V { 3, -1, 5 }
  35. #if ENABLED(MONITOR_DRIVER_STATUS) && !defined(MONITOR_DRIVER_STATUS_INTERVAL_MS)
  36. #define MONITOR_DRIVER_STATUS_INTERVAL_MS 500u
  37. #endif
  38. constexpr uint16_t _tmc_thrs(const uint16_t msteps, const uint32_t thrs, const uint32_t spmm) {
  39. return 12650000UL * msteps / (256 * thrs * spmm);
  40. }
  41. template<char AXIS_LETTER, char DRIVER_ID>
  42. class TMCStorage {
  43. protected:
  44. // Only a child class has access to constructor => Don't create on its own! "Poor man's abstract class"
  45. TMCStorage() {}
  46. public:
  47. uint16_t val_mA = 0;
  48. #if ENABLED(MONITOR_DRIVER_STATUS)
  49. uint8_t otpw_count = 0,
  50. error_count = 0;
  51. bool flag_otpw = false;
  52. inline bool getOTPW() { return flag_otpw; }
  53. inline void clear_otpw() { flag_otpw = 0; }
  54. #endif
  55. inline uint16_t getMilliamps() { return val_mA; }
  56. inline void printLabel() {
  57. SERIAL_CHAR(AXIS_LETTER);
  58. if (DRIVER_ID > '0') SERIAL_CHAR(DRIVER_ID);
  59. }
  60. struct {
  61. TERN_(HAS_STEALTHCHOP, bool stealthChop_enabled = false);
  62. TERN_(HYBRID_THRESHOLD, uint8_t hybrid_thrs = 0);
  63. TERN_(USE_SENSORLESS, int16_t homing_thrs = 0);
  64. } stored;
  65. };
  66. template<class TMC, char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
  67. class TMCMarlin : public TMC, public TMCStorage<AXIS_LETTER, DRIVER_ID> {
  68. public:
  69. TMCMarlin(const uint16_t cs_pin, const float RS) :
  70. TMC(cs_pin, RS)
  71. {}
  72. TMCMarlin(const uint16_t cs_pin, const float RS, const uint8_t axis_chain_index) :
  73. TMC(cs_pin, RS, axis_chain_index)
  74. {}
  75. TMCMarlin(const uint16_t CS, const float RS, const uint16_t pinMOSI, const uint16_t pinMISO, const uint16_t pinSCK) :
  76. TMC(CS, RS, pinMOSI, pinMISO, pinSCK)
  77. {}
  78. TMCMarlin(const uint16_t CS, const float RS, const uint16_t pinMOSI, const uint16_t pinMISO, const uint16_t pinSCK, const uint8_t axis_chain_index) :
  79. TMC(CS, RS, pinMOSI, pinMISO, pinSCK, axis_chain_index)
  80. {}
  81. inline uint16_t rms_current() { return TMC::rms_current(); }
  82. inline void rms_current(uint16_t mA) {
  83. this->val_mA = mA;
  84. TMC::rms_current(mA);
  85. }
  86. inline void rms_current(const uint16_t mA, const float mult) {
  87. this->val_mA = mA;
  88. TMC::rms_current(mA, mult);
  89. }
  90. inline uint16_t get_microstep_counter() { return TMC::MSCNT(); }
  91. #if HAS_STEALTHCHOP
  92. inline void refresh_stepping_mode() { this->en_pwm_mode(this->stored.stealthChop_enabled); }
  93. inline bool get_stealthChop_status() { return this->en_pwm_mode(); }
  94. #endif
  95. #if ENABLED(HYBRID_THRESHOLD)
  96. uint32_t get_pwm_thrs() {
  97. return _tmc_thrs(this->microsteps(), this->TPWMTHRS(), planner.settings.axis_steps_per_mm[AXIS_ID]);
  98. }
  99. void set_pwm_thrs(const uint32_t thrs) {
  100. TMC::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
  101. TERN_(HAS_LCD_MENU, this->stored.hybrid_thrs = thrs);
  102. }
  103. #endif
  104. #if USE_SENSORLESS
  105. inline int16_t homing_threshold() { return TMC::sgt(); }
  106. void homing_threshold(int16_t sgt_val) {
  107. sgt_val = (int16_t)constrain(sgt_val, sgt_min, sgt_max);
  108. TMC::sgt(sgt_val);
  109. TERN_(HAS_LCD_MENU, this->stored.homing_thrs = sgt_val);
  110. }
  111. #if ENABLED(SPI_ENDSTOPS)
  112. bool test_stall_status();
  113. #endif
  114. #endif
  115. #if HAS_LCD_MENU
  116. inline void refresh_stepper_current() { rms_current(this->val_mA); }
  117. #if ENABLED(HYBRID_THRESHOLD)
  118. inline void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
  119. #endif
  120. #if USE_SENSORLESS
  121. inline void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
  122. #endif
  123. #endif
  124. static constexpr int8_t sgt_min = -64,
  125. sgt_max = 63;
  126. };
  127. template<char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
  128. class TMCMarlin<TMC2208Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC2208Stepper, public TMCStorage<AXIS_LETTER, DRIVER_ID> {
  129. public:
  130. TMCMarlin(Stream * SerialPort, const float RS, const uint8_t) :
  131. TMC2208Stepper(SerialPort, RS)
  132. {}
  133. TMCMarlin(Stream * SerialPort, const float RS, uint8_t addr, const uint16_t mul_pin1, const uint16_t mul_pin2) :
  134. TMC2208Stepper(SerialPort, RS, addr, mul_pin1, mul_pin2)
  135. {}
  136. TMCMarlin(const uint16_t RX, const uint16_t TX, const float RS, const uint8_t) :
  137. TMC2208Stepper(RX, TX, RS)
  138. {}
  139. uint16_t rms_current() { return TMC2208Stepper::rms_current(); }
  140. inline void rms_current(const uint16_t mA) {
  141. this->val_mA = mA;
  142. TMC2208Stepper::rms_current(mA);
  143. }
  144. inline void rms_current(const uint16_t mA, const float mult) {
  145. this->val_mA = mA;
  146. TMC2208Stepper::rms_current(mA, mult);
  147. }
  148. inline uint16_t get_microstep_counter() { return TMC2208Stepper::MSCNT(); }
  149. #if HAS_STEALTHCHOP
  150. inline void refresh_stepping_mode() { en_spreadCycle(!this->stored.stealthChop_enabled); }
  151. inline bool get_stealthChop_status() { return !this->en_spreadCycle(); }
  152. #endif
  153. #if ENABLED(HYBRID_THRESHOLD)
  154. uint32_t get_pwm_thrs() {
  155. return _tmc_thrs(this->microsteps(), this->TPWMTHRS(), planner.settings.axis_steps_per_mm[AXIS_ID]);
  156. }
  157. void set_pwm_thrs(const uint32_t thrs) {
  158. TMC2208Stepper::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
  159. TERN_(HAS_LCD_MENU, this->stored.hybrid_thrs = thrs);
  160. }
  161. #endif
  162. #if HAS_LCD_MENU
  163. inline void refresh_stepper_current() { rms_current(this->val_mA); }
  164. #if ENABLED(HYBRID_THRESHOLD)
  165. inline void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
  166. #endif
  167. #endif
  168. };
  169. template<char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
  170. class TMCMarlin<TMC2209Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC2209Stepper, public TMCStorage<AXIS_LETTER, DRIVER_ID> {
  171. public:
  172. TMCMarlin(Stream * SerialPort, const float RS, const uint8_t addr) :
  173. TMC2209Stepper(SerialPort, RS, addr)
  174. {}
  175. TMCMarlin(const uint16_t RX, const uint16_t TX, const float RS, const uint8_t addr) :
  176. TMC2209Stepper(RX, TX, RS, addr)
  177. {}
  178. uint8_t get_address() { return slave_address; }
  179. uint16_t rms_current() { return TMC2209Stepper::rms_current(); }
  180. inline void rms_current(const uint16_t mA) {
  181. this->val_mA = mA;
  182. TMC2209Stepper::rms_current(mA);
  183. }
  184. inline void rms_current(const uint16_t mA, const float mult) {
  185. this->val_mA = mA;
  186. TMC2209Stepper::rms_current(mA, mult);
  187. }
  188. inline uint16_t get_microstep_counter() { return TMC2209Stepper::MSCNT(); }
  189. #if HAS_STEALTHCHOP
  190. inline void refresh_stepping_mode() { en_spreadCycle(!this->stored.stealthChop_enabled); }
  191. inline bool get_stealthChop_status() { return !this->en_spreadCycle(); }
  192. #endif
  193. #if ENABLED(HYBRID_THRESHOLD)
  194. uint32_t get_pwm_thrs() {
  195. return _tmc_thrs(this->microsteps(), this->TPWMTHRS(), planner.settings.axis_steps_per_mm[AXIS_ID]);
  196. }
  197. void set_pwm_thrs(const uint32_t thrs) {
  198. TMC2209Stepper::TPWMTHRS(_tmc_thrs(this->microsteps(), thrs, planner.settings.axis_steps_per_mm[AXIS_ID]));
  199. TERN_(HAS_LCD_MENU, this->stored.hybrid_thrs = thrs);
  200. }
  201. #endif
  202. #if USE_SENSORLESS
  203. inline int16_t homing_threshold() { return TMC2209Stepper::SGTHRS(); }
  204. void homing_threshold(int16_t sgt_val) {
  205. sgt_val = (int16_t)constrain(sgt_val, sgt_min, sgt_max);
  206. TMC2209Stepper::SGTHRS(sgt_val);
  207. TERN_(HAS_LCD_MENU, this->stored.homing_thrs = sgt_val);
  208. }
  209. #endif
  210. #if HAS_LCD_MENU
  211. inline void refresh_stepper_current() { rms_current(this->val_mA); }
  212. #if ENABLED(HYBRID_THRESHOLD)
  213. inline void refresh_hybrid_thrs() { set_pwm_thrs(this->stored.hybrid_thrs); }
  214. #endif
  215. #if USE_SENSORLESS
  216. inline void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
  217. #endif
  218. #endif
  219. static constexpr uint8_t sgt_min = 0,
  220. sgt_max = 255;
  221. };
  222. template<char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
  223. class TMCMarlin<TMC2660Stepper, AXIS_LETTER, DRIVER_ID, AXIS_ID> : public TMC2660Stepper, public TMCStorage<AXIS_LETTER, DRIVER_ID> {
  224. public:
  225. TMCMarlin(const uint16_t cs_pin, const float RS, const uint8_t) :
  226. TMC2660Stepper(cs_pin, RS)
  227. {}
  228. TMCMarlin(const uint16_t CS, const float RS, const uint16_t pinMOSI, const uint16_t pinMISO, const uint16_t pinSCK, const uint8_t) :
  229. TMC2660Stepper(CS, RS, pinMOSI, pinMISO, pinSCK)
  230. {}
  231. inline uint16_t rms_current() { return TMC2660Stepper::rms_current(); }
  232. inline void rms_current(const uint16_t mA) {
  233. this->val_mA = mA;
  234. TMC2660Stepper::rms_current(mA);
  235. }
  236. inline uint16_t get_microstep_counter() { return TMC2660Stepper::mstep(); }
  237. #if USE_SENSORLESS
  238. inline int16_t homing_threshold() { return TMC2660Stepper::sgt(); }
  239. void homing_threshold(int16_t sgt_val) {
  240. sgt_val = (int16_t)constrain(sgt_val, sgt_min, sgt_max);
  241. TMC2660Stepper::sgt(sgt_val);
  242. TERN_(HAS_LCD_MENU, this->stored.homing_thrs = sgt_val);
  243. }
  244. #endif
  245. #if HAS_LCD_MENU
  246. inline void refresh_stepper_current() { rms_current(this->val_mA); }
  247. #if USE_SENSORLESS
  248. inline void refresh_homing_thrs() { homing_threshold(this->stored.homing_thrs); }
  249. #endif
  250. #endif
  251. static constexpr int8_t sgt_min = -64,
  252. sgt_max = 63;
  253. };
  254. template<typename TMC>
  255. void tmc_print_current(TMC &st) {
  256. st.printLabel();
  257. SERIAL_ECHOLNPAIR(" driver current: ", st.getMilliamps());
  258. }
  259. #if ENABLED(MONITOR_DRIVER_STATUS)
  260. template<typename TMC>
  261. void tmc_report_otpw(TMC &st) {
  262. st.printLabel();
  263. SERIAL_ECHOPGM(" temperature prewarn triggered: ");
  264. serialprint_truefalse(st.getOTPW());
  265. SERIAL_EOL();
  266. }
  267. template<typename TMC>
  268. void tmc_clear_otpw(TMC &st) {
  269. st.clear_otpw();
  270. st.printLabel();
  271. SERIAL_ECHOLNPGM(" prewarn flag cleared");
  272. }
  273. #endif
  274. #if ENABLED(HYBRID_THRESHOLD)
  275. template<typename TMC>
  276. void tmc_print_pwmthrs(TMC &st) {
  277. st.printLabel();
  278. SERIAL_ECHOLNPAIR(" stealthChop max speed: ", st.get_pwm_thrs());
  279. }
  280. #endif
  281. #if USE_SENSORLESS
  282. template<typename TMC>
  283. void tmc_print_sgt(TMC &st) {
  284. st.printLabel();
  285. SERIAL_ECHOPGM(" homing sensitivity: ");
  286. SERIAL_PRINTLN(st.homing_threshold(), DEC);
  287. }
  288. #endif
  289. void monitor_tmc_drivers();
  290. void test_tmc_connection(const bool test_x, const bool test_y, const bool test_z, const bool test_e);
  291. #if ENABLED(TMC_DEBUG)
  292. #if ENABLED(MONITOR_DRIVER_STATUS)
  293. void tmc_set_report_interval(const uint16_t update_interval);
  294. #endif
  295. void tmc_report_all(const bool print_x, const bool print_y, const bool print_z, const bool print_e);
  296. void tmc_get_registers(const bool print_x, const bool print_y, const bool print_z, const bool print_e);
  297. #endif
  298. /**
  299. * TMC2130-specific sensorless homing using stallGuard2.
  300. * stallGuard2 only works when in spreadCycle mode.
  301. * spreadCycle and stealthChop are mutually-exclusive.
  302. *
  303. * Defined here because of limitations with templates and headers.
  304. */
  305. #if USE_SENSORLESS
  306. // Track enabled status of stealthChop and only re-enable where applicable
  307. struct sensorless_t { bool x, y, z, x2, y2, z2, z3, z4; };
  308. #if ENABLED(IMPROVE_HOMING_RELIABILITY)
  309. extern millis_t sg_guard_period;
  310. constexpr uint16_t default_sg_guard_duration = 400;
  311. struct slow_homing_t {
  312. xy_ulong_t acceleration;
  313. TERN_(HAS_CLASSIC_JERK, xy_float_t jerk_xy);
  314. };
  315. #endif
  316. bool tmc_enable_stallguard(TMC2130Stepper &st);
  317. void tmc_disable_stallguard(TMC2130Stepper &st, const bool restore_stealth);
  318. bool tmc_enable_stallguard(TMC2209Stepper &st);
  319. void tmc_disable_stallguard(TMC2209Stepper &st, const bool restore_stealth);
  320. bool tmc_enable_stallguard(TMC2660Stepper);
  321. void tmc_disable_stallguard(TMC2660Stepper, const bool);
  322. #if ENABLED(SPI_ENDSTOPS)
  323. template<class TMC, char AXIS_LETTER, char DRIVER_ID, AxisEnum AXIS_ID>
  324. bool TMCMarlin<TMC, AXIS_LETTER, DRIVER_ID, AXIS_ID>::test_stall_status() {
  325. this->switchCSpin(LOW);
  326. // read stallGuard flag from TMC library, will handle HW and SW SPI
  327. TMC2130_n::DRV_STATUS_t drv_status{0};
  328. drv_status.sr = this->DRV_STATUS();
  329. this->switchCSpin(HIGH);
  330. return drv_status.stallGuard;
  331. }
  332. #endif // SPI_ENDSTOPS
  333. #endif // USE_SENSORLESS
  334. #if HAS_TMC_SPI
  335. void tmc_init_cs_pins();
  336. #endif
  337. #endif // HAS_TRINAMIC_CONFIG