1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-31 01:59:54 +02:00

Axis step factors are back to float per phorton1

This commit is contained in:
Mitch Bradley
2021-07-02 18:41:23 -10:00
parent a5e05db193
commit 56081e4786

View File

@@ -39,11 +39,11 @@ namespace Machine {
Gang* _gangs[MAX_NUMBER_GANGED];
Homing* _homing = nullptr;
int _stepsPerMm = 320;
int _maxRate = 1000;
int _acceleration = 25;
int _maxTravel = 200;
bool _softLimits = false;
float _stepsPerMm = 320.0f;
float _maxRate = 1000.0f;
float _acceleration = 25.0f;
float _maxTravel = 200.0f;
bool _softLimits = false;
// Configuration system helpers:
void group(Configuration::HandlerBase& handler) override;