Skip to content

TMC5160 tuning #71

Description

@MasterPIC

Hi Charles,
I'm not sure about the value 64 used to switch from Stealth2 mode to SpreadCycle one

m_tmc5160->TPWMTHRS(64);

Let's assume 300 worm teeth and 4:1 reduction ratio.

  16MHz?
  t_clk=1/16e6 s

  // 24h - 3600s/h - 300 teeth - 4:1 red. ratio - 200 motor steps/rotation - 256 usteps
  1X (sid. speed) <-> ustep_period = 24*3600/300/4/200/256 = 0.001406 s
  t_step = 0.001406 s / t_clck = 22500 (= f_clk/f_usteps) @1X

  TPWMTHRS = 64 -> switch from Stealth2 to SpreadCycle @ 22500/64 X = 351.563X
  351.563X <-> 281RPM (1X <-> 0.8RPM)
  
  According to documentation possible jerk issues occur typically over 30 RPM (jerk is commonly neglected at 10-20-30RPM).

So let's assume to have jerk at 60X (48RPM) - TPWMTHRS = 64*351.563/60 = 375
I'd set
m_tmc5160->TPWMTHRS(375);

More generally I see the need for taking into account the overall reduction ratio to properly set TPWMTHRS.
So if you agree with me I would add a TMC5160 definition in TeenAstroCustomizations to allow TMC5160 tuning when desired.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions