12-02-2009 02:36 AM
Hi,
I use the fixpoint math library inside my fpga for division inside a SCTL. If I configure the division node for SCTL, I get a new input ("valid input") and two new outputs ("valid output" and "ready for input"). I'm not sure about the usage of these inputs. Can someone enlighten me?
Thanks for any help in advance.
Tim
12-02-2009 04:44 AM
Hi Tim,
The LV Help says:
input valid | Specifies whether the next data point has arrived for processing. Wire the output valid output of an upstream node to this input to transfer data from the upstream node to this node. To display this handshaking terminal, select the Inside single-cycle Timed Loop option in the configuration dialog box. | ||
ready for output | Specifies whether downstream nodes are ready for this node to return a new value. The default is TRUE. Use a Feedback Node to wire the ready for input output of a downstream node to this input of the current node.
|
output valid | Returns TRUE if this node has computed a result that downstream nodes can use. Use this terminal for handshaking with other FPGA VIs and functions. To display this terminal, select the Inside single-cycle Timed Loop option in the configuration dialog box. | ||
ready for input | Returns TRUE if this node is ready to accept new input data. Use a Feedback Node to wire this output to the ready for output input of an upstream node.
|