tmc2130.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. #ifndef TMC2130_H
  2. #define TMC2130_H
  3. //mode
  4. extern uint8_t tmc2130_mode;
  5. //holding and running currents
  6. extern uint8_t tmc2130_current_h[4];
  7. extern uint8_t tmc2130_current_r[4];
  8. //microstep resolution (0 means 256usteps, 8 means 1ustep
  9. extern uint8_t tmc2130_mres[4];
  10. //flags for axis stall detection
  11. extern uint8_t tmc2130_sg_thr[4];
  12. extern bool tmc2130_sg_stop_on_crash;
  13. extern uint8_t tmc2130_sg_crash; //crash mask
  14. extern uint8_t tmc2130_sg_meassure;
  15. extern uint32_t tmc2130_sg_meassure_cnt;
  16. extern uint32_t tmc2130_sg_meassure_val;
  17. extern uint8_t tmc2130_sg_homing_axes_mask;
  18. #define TMC2130_MODE_NORMAL 0
  19. #define TMC2130_MODE_SILENT 1
  20. #define TMC2130_WAVE_FAC1000_MIN 30
  21. #define TMC2130_WAVE_FAC1000_MAX 200
  22. #define TMC2130_WAVE_FAC1000_STP 1
  23. #define TMC2130_MINIMUM_PULSE 0 // minimum pulse width in uS
  24. #define TMC2130_SET_DIR_DELAY 20 // minimum delay after setting direction in uS
  25. #define TMC2130_SET_PWR_DELAY 0 // minimum delay after changing pwr mode in uS
  26. extern uint8_t tmc2130_home_enabled;
  27. extern uint8_t tmc2130_home_origin[2];
  28. extern uint8_t tmc2130_home_bsteps[2];
  29. extern uint8_t tmc2130_home_fsteps[2];
  30. extern uint8_t tmc2130_wave_fac[4];
  31. #pragma pack(push)
  32. #pragma pack(1)
  33. typedef struct
  34. {
  35. uint8_t toff:4;
  36. uint8_t hstr:3;
  37. uint8_t hend:4;
  38. uint8_t tbl:2;
  39. uint8_t res:3;
  40. } tmc2130_chopper_config_t;
  41. #pragma pack(pop)
  42. extern tmc2130_chopper_config_t tmc2130_chopper_config[4];
  43. //initialize tmc2130
  44. #ifdef PSU_Delta
  45. extern void tmc2130_init(bool bSupressFlag=false);
  46. #else
  47. extern void tmc2130_init();
  48. #endif
  49. //check diag pins (called from stepper isr)
  50. extern void tmc2130_st_isr();
  51. //update stall guard (called from st_synchronize inside the loop)
  52. extern bool tmc2130_update_sg();
  53. //temperature watching (called from )
  54. extern void tmc2130_check_overtemp();
  55. //enter homing (called from homeaxis before homing starts)
  56. extern void tmc2130_home_enter(uint8_t axes_mask);
  57. //exit homing (called from homeaxis after homing ends)
  58. extern void tmc2130_home_exit();
  59. //start stallguard meassuring for single axis
  60. extern void tmc2130_sg_meassure_start(uint8_t axis);
  61. //stop current stallguard meassuring and report result
  62. extern uint16_t tmc2130_sg_meassure_stop();
  63. extern void tmc2130_setup_chopper(uint8_t axis, uint8_t mres, uint8_t current_h, uint8_t current_r);
  64. //set holding current for any axis (M911)
  65. extern void tmc2130_set_current_h(uint8_t axis, uint8_t current);
  66. //set running current for any axis (M912)
  67. extern void tmc2130_set_current_r(uint8_t axis, uint8_t current);
  68. //print currents (M913)
  69. extern void tmc2130_print_currents();
  70. //set PWM_AMPL for any axis (M917)
  71. extern void tmc2130_set_pwm_ampl(uint8_t axis, uint8_t pwm_ampl);
  72. //set PWM_GRAD for any axis (M918)
  73. extern void tmc2130_set_pwm_grad(uint8_t axis, uint8_t pwm_ampl);
  74. extern uint16_t tmc2130_rd_MSCNT(uint8_t axis);
  75. extern uint32_t tmc2130_rd_MSCURACT(uint8_t axis);
  76. extern uint8_t tmc2130_usteps2mres(uint16_t usteps);
  77. #define tmc2130_mres2usteps(mres) ((uint16_t)256 >> mres)
  78. extern bool tmc2130_wait_standstill_xy(int timeout);
  79. extern uint16_t tmc2130_get_res(uint8_t axis);
  80. extern void tmc2130_set_res(uint8_t axis, uint16_t res);
  81. extern uint8_t tmc2130_get_pwr(uint8_t axis);
  82. extern void tmc2130_set_pwr(uint8_t axis, uint8_t pwr);
  83. extern uint8_t tmc2130_get_inv(uint8_t axis);
  84. extern uint8_t tmc2130_get_dir(uint8_t axis);
  85. extern void tmc2130_set_dir(uint8_t axis, uint8_t dir);
  86. extern void tmc2130_do_step(uint8_t axis);
  87. extern void tmc2130_do_steps(uint8_t axis, uint16_t steps, uint8_t dir, uint16_t delay_us);
  88. extern void tmc2130_goto_step(uint8_t axis, uint8_t step, uint8_t dir, uint16_t delay_us, uint16_t microstep_resolution);
  89. extern void tmc2130_get_wave(uint8_t axis, uint8_t* data, FILE* stream);
  90. extern void tmc2130_set_wave(uint8_t axis, uint8_t amp, uint8_t fac1000);
  91. extern bool tmc2130_home_calibrate(uint8_t axis);
  92. extern uint8_t tmc2130_cur2val(float cur);
  93. extern float tmc2130_val2cur(uint8_t val);
  94. #endif //TMC2130_H