File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -78,4 +78,9 @@ void Stepper::setTargetRel(int32_t delta)
78
78
setDir (delta < 0 ? -1 : 1 );
79
79
target = current + delta;
80
80
A = std::abs (delta);
81
- }
81
+ }
82
+
83
+ const int32_t Stepper::vMaxMax = 300000 ; // largest speed possible (steps/s)
84
+ const uint32_t Stepper::aMax = 500000 ; // speed up to 500kHz within 1 s (steps/s^2)
85
+ const uint32_t Stepper::vMaxDefault = 800 ; // should work with every motor (1 rev/sec in 1/4-step mode)
86
+ const uint32_t Stepper::aDefault = 2500 ; // reasonably low (~0.5s for reaching the default speed)
Original file line number Diff line number Diff line change 5
5
6
6
class Stepper
7
7
{
8
- static constexpr int32_t vMaxMax = 300000 ; // largest speed possible (steps/s)
9
- static constexpr uint32_t aMax = 500000 ; // speed up to 500kHz within 1 s (steps/s^2)
10
- static constexpr uint32_t vMaxDefault = 800 ; // should work with every motor (1 rev/sec in 1/4-step mode)
11
- static constexpr uint32_t aDefault = 2500 ; // reasonably low (~0.5s for reaching the default speed)
8
+ static const int32_t vMaxMax; // largest speed possible (steps/s)
9
+ static const uint32_t aMax; // speed up to 500kHz within 1 s (steps/s^2)
10
+ static const uint32_t vMaxDefault; // should work with every motor (1 rev/sec in 1/4-step mode)
11
+ static const uint32_t aDefault; // reasonably low (~0.5s for reaching the default speed)
12
12
13
13
public:
14
14
Stepper (const int StepPin, const int DirPin);
You can’t perform that action at this time.
0 commit comments