Real-Time Measurement and Control

cancel
Showing results for 
Search instead for 
Did you mean: 

sbrio 9631 digital inputs/outputs using FPGA I/O Node and FPGA I/O Method Nodes

Solved!
Go to solution

Hello, I am trying to configure my SBRio-9631 for the first time.  I am trying to use the on-boards digital inputs and outputs.  Will the following coding work?  This is a simple 'read the inputs, 'or' some inputs and pass it out to the outputs'.  Would I need to add 'FPGA I/O Method Nodes' between my 'FPGA I/O Nodes' to get the 'Tri-state modes for the input and output lines?  Also, I am having trouble simulating/testing this to work, by adding 5Vdc to the inputs and not getting any output voltage source.  Thank you for your time.

 

0 Kudos
Message 1 of 8
(8,594 Views)

Take a look at this tutorial.

Now Using LabVIEW 2019SP1 and TestStand 2019
Message 2 of 8
(8,585 Views)

Thank you very much for this helpful information.  I have a specific question.  I am going to use my SBRio-9631 to replace Texas Instruments SN74LS244N (non-inverting buffer) that takes signals from one PCB to another PCB.  Can I configure my on-board inputs and outputs as Tri-state?  Is the 9631 digital I/O Tri-state compatible?  Please reference the image below showing the code I have written so far.  Should I insert FPGA I/O Method Nodes between my two FPGA I/O Nodes and set the 'Set Output Enable as True' or should I put the Method Node after my output I/O Node to get Tri-state outputs?  Thank you for your time.  If you have any questions about the image below, please let me know.

SBRio9631 image.JPG

0 Kudos
Message 3 of 8
(8,575 Views)

I have modified my vi block diagram to include FPGA I/O Method Nodes for the outputs of my sbRIO-9631 on-board digital outputs.  Setting the 'Enable' to 'True', would this make my outputs Tri-state now?  Please refer to the image shown below.  Thank you for your time.

sbRIO-9631.JPG

0 Kudos
Message 4 of 8
(8,568 Views)

Please read through this help document on Using FPGA I/O.  It summarizes the method for using Output Enable to toggle a Tristate DIO line through its modes of input and output.

 

What do you intend to enable by making your outputs "tri-state"?  Tri-state is an an adjective to describe a logic pin that can drive 0 and 1 logic levels as well as a third, high-impedance state, typically used for input or to allow other circuits to drive a line.  All the DIO lines on the sbRIO-9631 are capable of tri-state logic.  Setting Output Enable = False makes those DIO lines high-impedance (non-driven).

 

Cheers,

Spex
National Instruments

To the pessimist, the glass is half empty; to the optimist, the glass is half full; to the engineer, the glass is twice as big as it needs to be has a 2x safety factor...
Message 5 of 8
(8,558 Views)

Thanks for your information.  It was very useful and I made a simple vi showing what I believe the material is stating (please see the image below).  When input Port8/DIO0 goes 'high', the output signal enables the Method Node to 'true' and enables the output of Port9/DIO0 to go 'high'.  When the input Port8/DIO0 goes 'low', the output signal enables the Method Node to 'false' and the output of Port9/DIO0 to go low and 'high impedance'.  The outputs of my sbRIO-9631 need to go to 'tri-state' in order to interface with other 'bus' devices like 'buffers' and 'line drivers'.  Is this image correct?  Thank you for your time.

 

Tri-state Output.JPG

0 Kudos
Message 6 of 8
(8,539 Views)

Hi gjmm,

 

The code you've written should perform as you described.  How fast do you need this logic to react to changes in the input?  Without any timing mechanism in your code, this code will run as fast as it can compile.  I would expect this code to run somewhere between 1-5MHz, if I had to guess.

 

If you need it to respond faster, you could place the code within a Timed Loop.  In LabVIEW FPGA, a timed loop is known as a Single Cycle Timed Loop, and it executes once for each clock tick of the FPGA.  By default, that would be 40MHz on an NI Single-Board RIO.

 

Regards,

 

 

Spex
National Instruments

To the pessimist, the glass is half empty; to the optimist, the glass is half full; to the engineer, the glass is twice as big as it needs to be has a 2x safety factor...
Message 7 of 8
(8,519 Views)
Solution
Accepted by topic author gjmm

Hey Spex,

 

I really, really appreciate your help.  Your follow-up information on this topic was exceptional.

 

Thanks again for your help and time.

gjmm

0 Kudos
Message 8 of 8
(8,515 Views)