Skip to content

Commit f3e6b6f

Browse files
committed
Fixed overflow problem in speed calculation
1 parent a5bd9e3 commit f3e6b6f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"maintainer": true
1616
},
1717
"homepage": "https://luni64.github.io/TeensyStep",
18-
"version": "2.0.0",
18+
"version": "2.0.1",
1919
"frameworks": "arduino",
2020
"platforms": "Teensy"
2121
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=TeensyStep
2-
version=2.0.0
2+
version=2.0.1
33
author=Lutz Niggl <lutz.niggl@lunoptics.com>
44
maintainer=Lutz Niggl <lutz.niggl@lunoptics.com>
55
sentence=High speed stepper driver for PJRC Teensy boards (T3.0 - T3.6)

src/accelerators/LinStepAccelerator.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class LinStepAccelerator
2121
int32_t s_0;
2222
uint32_t delta_tgt;
2323
uint32_t accLength, decStart;
24-
uint32_t two_a;
24+
float two_a;
2525
uint32_t v_tgt, v_min2;
2626
};
2727

@@ -59,23 +59,23 @@ int32_t LinStepAccelerator::updateSpeed(int32_t curPos)
5959
return sqrtf(two_a * ((stepsDone < delta_tgt - 1) ? delta_tgt - stepsDone - 2 : 0) + v_min2);
6060

6161
//we are done, make sure to return 0 to stop the step timer
62-
return 0;
62+
return 0;
6363
}
6464

6565
uint32_t LinStepAccelerator::initiateStopping(int32_t curPos)
6666
{
6767
uint32_t stepsDone = std::abs(s_0 - curPos);
68-
68+
6969
if (stepsDone < accLength) // still accelerating
70-
{
71-
accLength = decStart = 0; // start deceleration
70+
{
71+
accLength = decStart = 0; // start deceleration
7272
delta_tgt = 2 * stepsDone; // we need the same way to decelerate as we traveled so far
7373
return stepsDone; // return steps to go
7474
}
7575
else if (stepsDone < decStart) // constant speed phase
7676
{
7777
decStart = 0; // start deceleration
78-
delta_tgt = stepsDone + accLength; // normal deceleration distance
78+
delta_tgt = stepsDone + accLength; // normal deceleration distance
7979
return accLength; // return steps to go
8080
}
8181
else // already decelerating

src/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace TeensyStep
22
{
33

4-
constexpr const char *version = "V2.0.0";
4+
constexpr const char *version = "V2.0.1";
55
constexpr const char *branch = "master";
66

77
} // namespace TeensyStep

0 commit comments

Comments
 (0)