XNET Write (Signal XY).vi
- Updated2023-11-11
- 4 minute(s) read
XNET Write (Signal XY).vi
Purpose
Writes data to a session of Signal Output XY mode. The data represents a sequence of signal values for transmit using each frame's timing as the database specifies.
Format
Inputs
![]() |
session in is the session to write. This session is selected from the LabVIEW project or returned from the XNET Create Session VI. The session mode must be Signal Output XY. | ||||
![]() | data provides an array of LabVIEW clusters. Each array element corresponds to a signal configured for the session. The order of signals in the array corresponds to the order in the session list. The data you write is queued up for transmit on the network. Using the default queue configuration for this mode, you can safely write 64 elements if you have a sufficiently long timeout. To write more data, refer to the XNET Session Number of Values Unused property to determine the actual amount of queue space available for writing. For an example of how this data applies to network traffic, refer to Signal Output XY Mode. Each cluster contains two arrays, one for value, and one for timestamp. Each value is mapped to a frame for transmit. When signals exist in different frames, the array sizes may be different from one cluster (signal) to another. The cluster elements are:
| ||||
![]() | timeout is the time to wait for the data to be queued for transmit. The timeout does not wait for frames to be transmitted on the network (refer to the XNET Wait (Transmit Complete) VI). The timeout is a LabVIEW relative time, represented as 64-bit floating-point in units of seconds. If timeout is positive, the XNET Write (Signal XY) VI waits up to that timeout for space to become available in queues. If the space is not available prior to the timeout, a timeout error is returned. If timeout is negative, the XNET Write (Signal XY) VI waits indefinitely for space to become available in queues. If timeout is 0, the XNET Write (Signal XY) VI does not wait and immediately returns with a timeout error if all data cannot be queued. Regardless of the timeout used, if a timeout error occurs, none of the data is queued, so you can attempt to call the XNET Write (Signal XY) VI again at a later time with the same data. This input is optional. The default value is 10.0 (10 seconds). | ||||
![]() |
error in is the error cluster input (refer to Error Handling). |
Outputs
![]() |
session out is the same as session in, provided for use with subsequent VIs. |
![]() |
error out is the error cluster output (refer to Error Handling). |