Added TMC2209 support (#727)

TMC2209: Added TMC2209 support
This commit is contained in:
Amken USA
2025-01-28 06:42:18 -05:00
committed by GitHub
parent f57b5ecee9
commit 87c205fd65
12 changed files with 1975 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
package tmc2209
func EnableStealthChop() {
// Set StealthChop enabled in the global config register
}
func DisableStealthChop() {
// Set StealthChop disabled in the global config register
}
func EnableCoolStep(lowerThreshold, upperThreshold uint8) {
// Enable CoolStep with specified thresholds
}
func DisableCoolStep() {
// Disable CoolStep feature
}
func EnableAutomaticCurrentScaling() {
// Enable Automatic Current Scaling
}
func DisableAutomaticCurrentScaling() {
// Disable Automatic Current Scaling
}