12-16-2012 06:21 PM
Is there a reason why a graphic object will not display when the project is deployed to a real time target?
I am attempting to visualize sensor outputs by observing the position of a graphics object on the LV Front Panel.
Thanks.
12-16-2012 11:49 PM - edited 12-16-2012 11:50 PM
Yes, it's because RT VIs do not have front panels. If you are running in the development environment (and therefore can still see a panel) this will not be supported because the object reference itself is most likely not supported on RT (because, again, RT is meant to run stand-alone without front panels).
12-17-2012 07:21 AM
The Set Rotation is the RT VI? Or it becomes a RT VI when deployed to a RT Target?
When running in the development environment, is there an alternative approach allowing sensor values to update the orientation of the graphic object?
Thanks.
12-17-2012 11:06 AM
@Richard1000 wrote:
The Set Rotation is the RT VI? Or it becomes a RT VI when deployed to a RT Target?
When running in the development environment, is there an alternative approach allowing sensor values to update the orientation of the graphic object?
Thanks.
It becomes an RT vi when deployed to the target.
The alternative approach is actually the correct approach . You create a VI that runs standalone and headless on the RT platform. You then use some sort of network communication (see: TCP/IP) to pass the values up to a host computer. The host computer reads the values and displays them.