mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-08-18 12:21:39 +02:00
WIP fixed extra semicolon
This commit is contained in:
@@ -104,8 +104,7 @@ namespace Machine {
|
|||||||
|
|
||||||
void Axes::unlock_all_motors() { _motorLockoutMask = 0; }
|
void Axes::unlock_all_motors() { _motorLockoutMask = 0; }
|
||||||
void Axes::lock_motors(MotorMask mask) { set_bits(_motorLockoutMask, mask); }
|
void Axes::lock_motors(MotorMask mask) { set_bits(_motorLockoutMask, mask); }
|
||||||
void Axes::unlock_motors(MotorMask mask) {clear_bits(_motorLockoutMask, mask); }
|
void Axes::unlock_motors(MotorMask mask) { clear_bits(_motorLockoutMask, mask); }
|
||||||
;
|
|
||||||
|
|
||||||
void IRAM_ATTR Axes::step(uint8_t step_mask, uint8_t dir_mask) {
|
void IRAM_ATTR Axes::step(uint8_t step_mask, uint8_t dir_mask) {
|
||||||
auto n_axis = _numberAxis;
|
auto n_axis = _numberAxis;
|
||||||
@@ -195,7 +194,7 @@ namespace Machine {
|
|||||||
|
|
||||||
// Configuration helpers:
|
// Configuration helpers:
|
||||||
|
|
||||||
void Axes::group(Configuration::HandlerBase & handler) {
|
void Axes::group(Configuration::HandlerBase& handler) {
|
||||||
handler.item("number_axis", _numberAxis);
|
handler.item("number_axis", _numberAxis);
|
||||||
handler.item("shared_stepper_disable", _sharedStepperDisable);
|
handler.item("shared_stepper_disable", _sharedStepperDisable);
|
||||||
|
|
||||||
@@ -225,4 +224,4 @@ namespace Machine {
|
|||||||
delete _axis[i];
|
delete _axis[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user