#pragma once #include namespace modules { namespace motion { struct AxisSim { pos_t pos; pos_t targetPos; bool enabled; bool homed; bool stallGuard; }; extern AxisSim axes[3]; extern void ReinitMotion(); } // namespace motion } // namespace modules