06-01-2017 12:34 PM
I'm trying to create a set of custom probes which allow me to time sections of code without having to add code by setting an entry point probe and an exit point probe but to do that, the start time obtained by the entry point probe needs to be accessible by the exit point probe and ideally without doing something slow like writing to a file. But perhaps this isn't possible due to how probes are executed in LabVIEW?
Solved! Go to Solution.
06-02-2017 08:50 AM
I think you want to kudo this idea.
Short answer is that I don't think it's possible currently.
06-02-2017 09:03 AM
06-02-2017 09:13 AM
Sharing data between probes is possible through all the normal LabVIEW mechanism. Here is one of my favorite timing probes that let you measure how much time passes between two error wires by taking tick measurements when the probe is enters and subtracting the time between them. I believe these probes use named queues to share data.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
06-02-2017 11:16 AM
I was headed down that road with some named notifiers before I decided my actual work was more important. But this is exactly what I was looking to create. Thanks!