Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Overview

All protocol items support the use of modifiers. Modifiers specify how data is sent, polled, or displayed. The modifiers listed below are standard for all protocols in ACM. Further modifiers are supported, but are protocol specific. Consult the specific Device Protocol section for further documentation.

Connection

<C1> and <C2>

This is used to specify whether the connection is primary or secondary. 

Example: ItemName<C1>

Interval

<In>

Poll this item using a specific interval “n”. Valid interval numbers are 1 to 15. If no interval modifier is used, the item will be polled at the default interval (the default interval is 1 unless changed, and can be identified by reading the “IntervalSelect” OPC item).

Example: ItemName<I3> This example item will be polled at the time and rate specified in interval 3 of the selected schedule object.

Device Override

<D>

This item's name will not be tested against ACM protocol standard items. Use this modifier if the item name required to poll from a device is the same as an ACM standard item name.

Priority

<P1>, <P2>, <P3>, <P4>, and <P5>.

The priority of real-time OPC items can be set by adding a modifier to them. By default, they are set to Priority 3 which is Medium. To set them to High Priority by adding the modifier “<P2>”, or set them to Low Priority by adding the modifier “<P4>”. If one of these modifiers is added to all OPC items, the regular reads from a device can be set to a higher or lower priority. Priority Levels are covered in more detail here.

Write Only

<WO>

This modifier is used to designate an OPC item as write only. The item will not be polled if the item is included in a read message.

Example: ItemName<WO>

Pause

For clients that do not support an inactive state for items, this modifier can be used to stop or start polling of a specific item. Any item can be controlled through another item of the same name with this modifier appended.


Example:
• OPC item: ItemName
• OPC item: ItemName.Pause


Writing a 1 to the ItemName.Pause item will make ACM stop polling for the ItemName item.
Writing a 0 to the ItemName.Pause item will make ACM resume scheduled polling for the ItemName item.

Device Pause Override

<DP>

This item's name will not be tested for the .Pause modifier. Use the <DP> modifier if the item name required to poll from a device contains the string .Pause (case insensitive).

Device Pause Override Pause

<DPP>

For clients that do not support an inactive state for items, this modifier can be used to stop or start polling of an item whose name contains the string .Pause (case insensitive). An item that uses the <DP> modifier can be controlled through another item of the same name with the <DPP> modifier appended.

Example:
• OPC item: ItemNameWith.Pause<DP>
• OPC item: ItemNameWith.Pause<DPP>

Writing a 1 to the ItemNameWith.Pause<DPP> item will make ACM stop polling for the ItemNameWith.Pause<DP> item.
Writing a 0 to the ItemNameWith.Pause<DPP> item will make ACM resume scheduled polling for the ItemNameWith.Pause<DP> item.

  • No labels