08-09-2023 03:38 AM
I am getting Error during Enqueue , when I am running this below Sub VI this below error is coming.
I would be grateful if somebody help me related to this topic.
08-09-2023 04:06 AM
Hi Poojaavi,
@Poojaavi123 wrote:
I am getting Error during Enqueue , when I am running this below Sub VI this below error is coming.
Make sure the queue reference is valid…
08-09-2023 08:22 AM
Most likely causes here:
1. You did not initialize the queue.
2. You closed/destroyed the queue before this call.
3. Your FGV has a bug where the queue reference is not wired through a case and the tunnel is set to "Use Default If Unwired". You should only have a tunnel set to that in very limited cases because of this type of situation.
08-09-2023 10:19 AM
@crossrulz wrote:
Most likely causes here:
1. You did not initialize the queue.
2. You closed/destroyed the queue before this call.
3. Your FGV has a bug where the queue reference is not wired through a case and the tunnel is set to "Use Default If Unwired". You should only have a tunnel set to that in very limited cases because of this type of situation.
4. You call the FGV that creates the queue in another top level hierarchy than this VI and that other top level hierarchy has since gone idle.
Reason: All LabVIEW refnums are auto collected (closed) the moment the top level VI in whose hierarchy they were created goes idle.