namespace XP.Hardware.MotionControl.Abstractions
{
///
/// 轴复位接口 | Axis Reset Interface
/// 提供轴复位写入和复位完成状态读取 | Provides axis reset write and reset-done status read
///
public interface IAxisReset
{
/// 复位是否完成 | Whether reset is done
bool IsResetDone { get; }
/// 发送复位命令 | Send reset command
/// 操作结果 | Operation result
MotionResult Reset();
/// 从 PLC 更新复位完成状态 | Update reset-done status from PLC
void UpdateStatus();
}
}