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

@@ -105,7 +105,6 @@ 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 IRAM_ATTR Axes::step(uint8_t step_mask, uint8_t dir_mask) {
auto n_axis = _numberAxis;