TestIT:Programming mosCura

From Nolek Wiki
Jump to navigation Jump to search

5.3.19 mosCura

GetRecipe

Description:

Retrieves a recipe from mosCura

Code example:

mosCura.GetRecipe(mosCuraDevice,RecipeNo,_B01,_ReturnMessage)

Parameters
Parameter Type Description
Device name String or String symbol The instrument name to use
Recipe name String or String symbol The mosCura Recipe name
Done Bool Will be set when command is done
Return message String or String symbol Result message

ResetRecipe

Description:

Resets all recept symbol values for mosCura device

Code example:

mosCura.ResetRecipe(mosCuraDevice ,_B01,_ReturnMessage)

Parameters
Parameter Type Description
Device name String or String symbol The instrument name to use
Done Bool Will be set when command is done
Return message String or String symbol Result message

SetResult

Description:

Send results to mosCura, using all the result symbols set up in the device.

Code example:

mosCura.SetResult(mosCuraDevice ,_B01,_ReturnMessage)

Parameters
Parameter Type Description
Device name String or String symbol The instrument name to use
Done Bool Will be set when command is done
Return message String or String symbol Result message

ResetResult

Description:

Reset all result tags for mosCura device.

Code example:

mosCura.ResetResult(mosCuraDevice ,_B01,_ReturnMessage)

Parameters
Parameter Type Description
Device name String or String symbol The instrument name to use
Done Bool Will be set when command is done
Return message String or String symbol Result message

GetStandardRecipeGroup

Description:

Returns the dynamic sequence from mosCura, according to the test number given. This is sequence is used by the GuideExecuter guidestep, to decide which guides to jump to.

Code example:

mosCura.GetStdRecipeGroup(mosCuraDevice ,_TestCount,_ExecuterConfig,_B01,_ReturnMessage)

Parameters
Parameter Type Description
Device name String or String symbol The instrument name to use
GroupCount Int or Int symbol The Test group count to receive config from. By default a GroupCount of 1 = IG50, 2 = IG51..
Symbol name String or String symbol Symbol to receive the dynamic configuration
Done Bool Will be set when command is done
Return message String or String symbol Result message


Back to Programming - Commands