|
@@ -91,7 +91,7 @@ namespace Aitex.RT.Device.Custom
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
- public void RecipeStart(string recipeName)
|
|
|
+ public override void RecipeStart(string recipeName)
|
|
|
{
|
|
|
if (!IsConnected)
|
|
|
{
|
|
@@ -103,7 +103,7 @@ namespace Aitex.RT.Device.Custom
|
|
|
EPDClient.Instance.Service.RecipeStart(_channel, recipeName);
|
|
|
}
|
|
|
|
|
|
- public void RecipeStop()
|
|
|
+ public override void RecipeStop()
|
|
|
{
|
|
|
if (!IsConnected)
|
|
|
{
|
|
@@ -124,7 +124,7 @@ namespace Aitex.RT.Device.Custom
|
|
|
* EnablePostponePercent=True;EnableCriterialPercent=True;
|
|
|
* TriggerMode=System.Windows.Controls.ComboBoxItem: Event;IsFaultIfNoTrigger=True;
|
|
|
*/
|
|
|
- public void StepStart(string config, int index)
|
|
|
+ public override void StepStart(string config, int index)
|
|
|
{
|
|
|
if (!IsConnected)
|
|
|
{
|
|
@@ -268,7 +268,7 @@ namespace Aitex.RT.Device.Custom
|
|
|
return AlgorithmType.ALG_NONE;
|
|
|
}
|
|
|
|
|
|
- public void StepStop()
|
|
|
+ public override void StepStop()
|
|
|
{
|
|
|
if (!IsConnected)
|
|
|
{
|