Files
drivers/tmc2209/velocity.go
T
Amken USA 87c205fd65 Added TMC2209 support (#727)
TMC2209: Added TMC2209 support
2025-01-28 12:42:18 +01:00

13 lines
309 B
Go

package tmc2209
func MoveAtVelocity(microstepsPerPeriod int32) {
// Write velocity to the relevant register
}
func MoveUsingStepDirInterface() {
// Set the interface to use step/direction interface
}
func GetVelocity() uint32 {
// Read the actual velocity register
return 0 // Placeholder return value
}