Skip to content

Commit bc65ad5

Browse files
committed
Make linker happy
1 parent 00100ec commit bc65ad5

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

src/Stepper.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,9 @@ void Stepper::setTargetRel(int32_t delta)
7878
setDir(delta < 0 ? -1 : 1);
7979
target = current + delta;
8080
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)

src/Stepper.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
class Stepper
77
{
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)
1212

1313
public:
1414
Stepper(const int StepPin, const int DirPin);

0 commit comments

Comments
 (0)