File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 15
15
"maintainer" : true
16
16
},
17
17
"homepage" : " https://luni64.github.io/TeensyStep" ,
18
- "version" : " 2.0.0 " ,
18
+ "version" : " 2.0.1 " ,
19
19
"frameworks" : " arduino" ,
20
20
"platforms" : " Teensy"
21
21
}
Original file line number Diff line number Diff line change 1
1
name =TeensyStep
2
- version =2.0.0
2
+ version =2.0.1
3
3
author =Lutz Niggl <lutz.niggl@lunoptics.com>
4
4
maintainer =Lutz Niggl <lutz.niggl@lunoptics.com>
5
5
sentence =High speed stepper driver for PJRC Teensy boards (T3.0 - T3.6)
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class LinStepAccelerator
21
21
int32_t s_0;
22
22
uint32_t delta_tgt;
23
23
uint32_t accLength, decStart;
24
- uint32_t two_a;
24
+ float two_a;
25
25
uint32_t v_tgt, v_min2;
26
26
};
27
27
@@ -59,23 +59,23 @@ int32_t LinStepAccelerator::updateSpeed(int32_t curPos)
59
59
return sqrtf (two_a * ((stepsDone < delta_tgt - 1 ) ? delta_tgt - stepsDone - 2 : 0 ) + v_min2);
60
60
61
61
// we are done, make sure to return 0 to stop the step timer
62
- return 0 ;
62
+ return 0 ;
63
63
}
64
64
65
65
uint32_t LinStepAccelerator::initiateStopping (int32_t curPos)
66
66
{
67
67
uint32_t stepsDone = std::abs (s_0 - curPos);
68
-
68
+
69
69
if (stepsDone < accLength) // still accelerating
70
- {
71
- accLength = decStart = 0 ; // start deceleration
70
+ {
71
+ accLength = decStart = 0 ; // start deceleration
72
72
delta_tgt = 2 * stepsDone; // we need the same way to decelerate as we traveled so far
73
73
return stepsDone; // return steps to go
74
74
}
75
75
else if (stepsDone < decStart) // constant speed phase
76
76
{
77
77
decStart = 0 ; // start deceleration
78
- delta_tgt = stepsDone + accLength; // normal deceleration distance
78
+ delta_tgt = stepsDone + accLength; // normal deceleration distance
79
79
return accLength; // return steps to go
80
80
}
81
81
else // already decelerating
Original file line number Diff line number Diff line change 1
1
namespace TeensyStep
2
2
{
3
3
4
- constexpr const char *version = " V2.0.0 " ;
4
+ constexpr const char *version = " V2.0.1 " ;
5
5
constexpr const char *branch = " master" ;
6
6
7
7
} // namespace TeensyStep
You can’t perform that action at this time.
0 commit comments