01-16-2024 10:57 PM
Hi,
I have a question that how do I know the Timing blocks (wait until next ms, wait, time count, ...) or other blocks related to Timer (Timed-Loop, ...) use the CLOCK SOURCE from the microcontroller (I use myRIO-1900) or my laptop (window).
Thank you.
Solved! Go to Solution.
01-17-2024 12:28 AM
Hi Toan,
@ToanTranBK wrote:
how do I know the Timing blocks (wait until next ms, wait, time count, ...) or other blocks related to Timer (Timed-Loop, ...) use the CLOCK SOURCE from the microcontroller (I use myRIO-1900) or my laptop (window).
The myRIO is a computer on its own and so it uses its own clock sources!
01-17-2024 09:42 PM
Expandling on @GerdW's point, the myRIO runs the NI Linux Real-Time Operating System (definitely not Microsoft Windows) and is the Real-Time Target of a LabVIEW Real-Time application, with the PC acting as the "Host" computer, doing all of the interaction with the User through its Front Panel as the point where a (human) Operator can interact with Controls and Indicators on the Front Panel of the top-level VI. The Host code is responsible for interacting with the Operator and with non-time-critical actions (such as reading and writing data to file systems), while the Target code, running on the Real-Time OS on the myRIO, are capable of precise (and accurate) timing measurement (including allowing true concurrent data processing through its FPGA running as a third processing component).
Bob Schor
01-18-2024 11:17 AM
Ohh, thank you so much
01-18-2024 11:17 AM
Thank you for your helpful answer. I really appreciate it.