|
@@ -131,7 +131,7 @@ namespace CyberX8_RT.Modules.SRD
|
|
|
.Run(SRDRunRecipeStep.RunRecipe_ChangeDrySpeed, ChangeSpeed, _delay_1ms)
|
|
|
.Delay(SRDRunRecipeStep.RunRecipe_Drying, _srdRecipe.DryTime * 1000)
|
|
|
.Run(SRDRunRecipeStep.RunRecipe_StopRotation, StopRotation, _delay_1ms)
|
|
|
- .Wait(SRDRunRecipeStep.RunRecipe_CheckRotationStopped, CheckRotationStopEndStatus, _delay_5s)
|
|
|
+ .Wait(SRDRunRecipeStep.RunRecipe_CheckRotationStopped, CheckRotationStopEndStatus, _delay_10s)
|
|
|
.WaitWithStopCondition(SRDRunRecipeStep.RunRecipe_CheckRotationHomed, CheckRotationHomeEndStatus, CheckRotationHomedStopStatus)
|
|
|
.End(SRDRunRecipeStep.End, NullFun, _delay_1ms);
|
|
|
return Runner.Status;
|
|
@@ -499,7 +499,7 @@ namespace CyberX8_RT.Modules.SRD
|
|
|
{
|
|
|
if (!_rotationAxis.IsRun && _rotationAxis.Status == RState.End)
|
|
|
{
|
|
|
- bool homeResult = _rotationAxis.Home(false);
|
|
|
+ bool homeResult = _rotationAxis.Home();
|
|
|
if (!homeResult)
|
|
|
{
|
|
|
NotifyError(eEvent.ERR_SRD, $"{Module}.Rotation home action is failed", 0);
|