Difference between revisions of "TestIT:Programming mosCura"
NolekAdmin (talk | contribs) (Created page with "==5.3.19 mosCura== ===GetRecipe=== '''Description:''' Retrieves a recipe from mosCura '''Code example:''' <code>mosCura.GetRecipe(mosCuraDevice,RecipeNo,_B01,_ReturnMessa...") |
NolekAdmin (talk | contribs) |
||
| (One intermediate revision by the same user not shown) | |||
| Line 98: | Line 98: | ||
|} | |} | ||
| − | ===ResetResult | + | ===ResetResult=== |
'''Description:''' | '''Description:''' | ||
| Line 167: | Line 167: | ||
|- | |- | ||
|} | |} | ||
| + | |||
| + | |||
| + | [[TestIT:Programming#5.3_Commands|Back to Programming - Commands]] | ||
Latest revision as of 15:21, 11 September 2019
Contents
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 |