LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

cRIO standalone application

Hello,

I'm trying to develop a cRIO standalone application using the cRIO-9054: the target is to start the data logging procedure without the need to maintain the connection to a PC. Is there a way to control the C-Rio without any input from the LabView environment? How can the data-logging start with no LAN connection between the C-Rio and the PC? 

0 Kudos
Message 1 of 4
(1,589 Views)

You could use a digital input to trigger logging.



There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Message 2 of 4
(1,575 Views)

@nicola_rosso_96 wrote:

Hello,

I'm trying to develop a cRIO standalone application using the cRIO-9054: the target is to start the data logging procedure without the need to maintain the connection to a PC. Is there a way to control the C-Rio without any input from the LabView environment? How can the data-logging start with no LAN connection between the C-Rio and the PC? 


The cRIO can "see" whatever is connected to it.  In particular, it can "see" the data that it is recording, and (possibly) can "see" a clock.  So if your criterion to start data-logging is data-based (i.e. "start recording when the voltage exceeds 3V" or "start recording when the S/N ratio is > 2.3"), the cRIO can "control itself".  You can also, say, connect a push-button to a DIO line and say "Start acquisition when I push this button".

 

Bob Schor

0 Kudos
Message 3 of 4
(1,526 Views)

You can trigger DAQ in multiple ways:

  • After startup
  • Time elapsed since last DAQ
  • Digital trigger signal is rising/falling (through DI or AI modules)
  • Your measured signal has a specific characteristics (start DAQ only if signal RMS > limit)
  • Network communication

Luckily your 9054 RIO has PFI bus (the golden connector) which you can use (and connect it to FPGA too, but it is a little bit tricky) as a digital input. Having a button, you can come up with a simple circuitry which can be used for triggering DAQ.

0 Kudos
Message 4 of 4
(1,498 Views)