1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-29 09:10:03 +02:00

Merge branch 'YamlSettings' of https://github.com/bdring/Grbl_Esp32 into YamlSettings

This commit is contained in:
Mitch Bradley
2021-07-25 06:12:46 -10:00
2 changed files with 2 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ axes:
seek_rate: 200.000
debounce_ms: 500
pulloff: 1.000
square: false
gang0:
endstops:

View File

@@ -37,7 +37,7 @@ namespace Machine {
void Gang::init() {
if (strcmp(_motor->name(), "null_motor") != 0) {
bitnum_istrue(Machine::Axes::motorMask, _axis + 16 * _gang);
bitnum_true(Machine::Axes::motorMask, _axis + 16 * _gang);
}
_motor->init();
if (_endstops) {