laatzen/Common/Hardware/Common.Hardware.SIRT/Tasks/DeleteFromPamPoolTask.cs
2025-11-20 08:46:37 +01:00

17 lines
416 B
C#

namespace Common.Hardware.SIRT.Tasks
{
using Common.Hardware.SIRT.Parameters;
public class DeleteFromPamPoolTask : SIRTTask
{
public DeleteFromPamPoolTask()
{
this.request.Command = SIRTConstants.W_PAM;
this.request.P1 = new P811 { DelPamAdr = true };
}
public override void Receive(SIRTMessage _)
=> this.SetCompleted();
}
}