Stop some drivers and update the corresponding motor positions
| 1755 | |
| 1756 | // Stop some drivers and update the corresponding motor positions |
| 1757 | void Move::StopDriversFromRemote(uint16_t whichDrives) noexcept |
| 1758 | { |
| 1759 | LocalDriversBitmap dr(whichDrives); |
| 1760 | dr.Iterate([this](size_t drive, unsigned int) noexcept |
| 1761 | { |
| 1762 | StopDriveFromRemote(drive); |
| 1763 | } |
| 1764 | ); |
| 1765 | } |
| 1766 | |
| 1767 | // Stall endstops |
| 1768 | GCodeResult Move::SetStallEndstopReporting(const CanMessageEnableStallEndstop& msg, const StringRef& reply) noexcept |
no outgoing calls
no test coverage detected