FTalk Tag Bit Access

DamianInRochester

Lifetime Supporting Member
Join Date
Jan 2011
Location
Rochester NY
Posts
1,292
As an example, if i create a tag in the PLC called "tag1" as a DINT, and then reference several times that tag at the bit level in FTalk, does the PV sample the entire tag everytime I look at a bit, or does it recognize that it already has the entire DINT.

To put it differently, if I have indicators on a screen with connections referenced as follows


{::[L35E]Program:Test.tag1.0}
{::[L35E]Program:Test.tag1.1}
{::[L35E]Program:Test.tag1.2}
{::[L35E]Program:Test.tag1.3}
{::[L35E]Program:Test.tag1.4}
{::[L35E]Program:Test.tag1.5}

Is the PVP "wise enough" to recognize that is already has
{::[L35E]Program:Test.tag1} and doesn't need to call for it everytime I want to look at a bit in it?
 
It will update it at whatever update rate is configured in your OPC server. And the OPC server will always read a full 32 bit word at a time.

Thanks, but that's not really what I was asking.

I want to know if FTalk is bringing {::[L35E]Program:Test.tag1} in as a DINT, and doing the BIT stuff on the PV end (per update rate), or if it is accessing each instance of {::[L35E]Program:Test.tag1.X} as a bool tag. I realize that even bool tags will be treated 32bit, which is exactly why I don't want it getting it one bit at a time or making several calls every update for the same information.

I could put in an expression something like
{ModbusTCP.EPP.FaultBitMap1} & 8 <> 0
which I have done for bit access when communicationing with non-AB devices, but the bit level syntax minus the expression is a lot less work and probably less of a burden on the PV.
 

Similar Topics

Hi everyone, i have a compact logic 1769-L18 PLC and I'm using FTalk View ME for the display. I wanted to do some visualization on Grafana. At...
Replies
2
Views
175
Most HMI have the ability to sound speaker on alarms. What I'm wondering is does Factorytalk View SE have the ability to use different audio clip...
Replies
2
Views
1,487
Ok everyone i need some help. I recently started at a new place and they are using a plant wide FTalk View SE system for all their HMI's. Each...
Replies
2
Views
1,599
I am trying to setup a login page for my FactoryTalk View SE Version 7.0 (CPR 9 SR 6) Basically all I want is 2 users: Services and Process. To...
Replies
12
Views
4,879
Replies
11
Views
4,235
Back
Top Bottom