tmc2130.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef TMC2130_H
  2. #define TMC2130_H
  3. extern uint8_t tmc2130_cs[4];
  4. //mode
  5. extern uint8_t tmc2130_mode;
  6. //holding and running currents
  7. extern uint8_t tmc2130_current_h[4];
  8. extern uint8_t tmc2130_current_r[4];
  9. //flags for axis stall detection
  10. extern uint8_t tmc2130_axis_stalled[3];
  11. extern uint8_t tmc2131_axis_sg_thr[3];
  12. #define TMC2130_MODE_NORMAL 0
  13. #define TMC2130_MODE_SILENT 1
  14. //initialize tmc2130
  15. extern void tmc2130_init();
  16. //update stall guard (called from st_synchronize inside the loop)
  17. extern bool tmc2130_update_sg();
  18. //temperature watching (called from )
  19. extern void tmc2130_check_overtemp();
  20. //enter homing (called from homeaxis before homing starts)
  21. extern void tmc2130_home_enter(uint8_t axes_mask);
  22. //exit homing (called from homeaxis after homing ends)
  23. extern void tmc2130_home_exit();
  24. //restart homing (called from homeaxis befor move)
  25. extern void tmc2130_home_restart(uint8_t axis);
  26. //set holding current for any axis (M911)
  27. extern void tmc2130_set_current_h(uint8_t axis, uint8_t current);
  28. //set running current for any axis (M912)
  29. extern void tmc2130_set_current_r(uint8_t axis, uint8_t current);
  30. //print currents (M913)
  31. extern void tmc2130_print_currents();
  32. //set PWM_AMPL for any axis (M917)
  33. extern void tmc2130_set_pwm_ampl(uint8_t axis, uint8_t pwm_ampl);
  34. //set PWM_GRAD for any axis (M918)
  35. extern void tmc2130_set_pwm_grad(uint8_t axis, uint8_t pwm_ampl);
  36. extern uint16_t tmc2130_rd_MSCNT(uint8_t cs);
  37. #endif //TMC2130_H