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

WIP fixed extra semicolon

This commit is contained in:
bdring
2021-08-03 14:11:44 -05:00
parent 06ab61b811
commit 9546dc27f0

View File

@@ -104,8 +104,7 @@ namespace Machine {
void Axes::unlock_all_motors() { _motorLockoutMask = 0; }
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) {
auto n_axis = _numberAxis;
@@ -195,7 +194,7 @@ namespace Machine {
// Configuration helpers:
void Axes::group(Configuration::HandlerBase & handler) {
void Axes::group(Configuration::HandlerBase& handler) {
handler.item("number_axis", _numberAxis);
handler.item("shared_stepper_disable", _sharedStepperDisable);
@@ -225,4 +224,4 @@ namespace Machine {
delete _axis[i];
}
}
}
}