forked from apsystems/GrblHoming
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V3.4 z axis control improvements, selectable baud rate, dwell/coolant…
… fix, decimal precision reduction to fit grbl line buffer and many other changes
- Loading branch information
Showing
19 changed files
with
834 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#include "controlparams.h" | ||
|
||
ControlParams::ControlParams() | ||
: waitTime(LONG_WAIT_SEC), zJogRate(DEFAULT_Z_JOG_RATE), | ||
useMm(true), zRateLimit(false), zRateLimitAmount(DEFAULT_Z_LIMIT_RATE), | ||
xyRateAmount(DEFAULT_XY_RATE), | ||
useAggressivePreload(false), filterFileCommands(false), | ||
reducePrecision(false), grblLineBufferLen(DEFAULT_GRBL_LINE_BUFFER_LEN) | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#ifndef CONTROLPARAMS_H | ||
#define CONTROLPARAMS_H | ||
|
||
#include "definitions.h" | ||
|
||
#define SHORT_WAIT_SEC 2 | ||
#define LONG_WAIT_SEC 100 | ||
|
||
class ControlParams | ||
{ | ||
public: | ||
ControlParams(); | ||
|
||
public: | ||
int waitTime; | ||
double zJogRate; | ||
bool useMm; | ||
bool zRateLimit; | ||
double zRateLimitAmount; | ||
double xyRateAmount; | ||
bool useAggressivePreload; | ||
bool filterFileCommands; | ||
bool reducePrecision; | ||
int grblLineBufferLen; | ||
}; | ||
|
||
#endif // CONTROLPARAMS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.