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.

tmc_util.h 13KB

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