From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Shift Register Not Re-Initializing

Solved!
Go to solution

Hello,

 

I have a sub-vi/dialog which takes an array of objects in, allows the user to manipulate the array, and outputs the changes if OK is pressed, otherwise it outputs the original array.  The input array control to the sub-VI is used to initialize a shift register in the event handler while loop which then passes the changes between events.

 

My problem is that this works perfectly fine the first time I call the VI.  However, if I exit the VI and then open it again, the shift register is never re-initialized.  I can watch the values progress via probes and I get the new array from the control when the VI is called but the value from the shift register is whatever it was the last time the VI was run.

 

This code was working to my knowledge before I made a simple change to the control and indicator on the sub VI: instead of being an array of my objects, I changed them to a typedef which is an array of my objects.  Could it be that changing the type (even though it is still the same just encapsulated within a typedef) has caused an issue in LabVIEW?

image.png

 

 

 

image.png

 

 

The array coming from the shift register is empty (probe 14) because I previously (the last time I called the VI) clicked the cancel button which assigns an empty array to the shift register.  However the shift register should not still be empty because I just reinitialized it with the new array (probe 9).

 

Thanks in advance for any help!

 

0 Kudos
Message 1 of 10
(4,471 Views)

I can't be certain from the picture but it looks like a tunnel on the right of the event structure, before the shift register has a case where it "uses default if unwired".

 

My guess is that you hit one of them events and that sticks the empty object array in the shift register.

 

0xDEAD

0 Kudos
Message 2 of 10
(4,468 Views)

My initial thought is that you actually have a tunnel going underneath the shift register that your wire is connected to instead of the shift register.  Try deleting that wire branch and reconnect to the shift register.

 


@patrick.wright wrote: instead of being an array of my objects, I changed them to a typedef which is an array of my objects.

In my opinion, arrays should not be typedefs.  Arrays are containers of a specific type.  In your case, your class is the the typedef.


GCentral
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
0 Kudos
Message 3 of 10
(4,461 Views)

Yes, in my panel close and cancel events I left the terminal unwired because I didn't really care what value ended up in the shift register and I have the use default option selected.  Perhaps my understanding is wrong, but in both of these events my loop ends and the VI exits so shouldn't the shift register become re-intialized again once the VI restarts thus clearing out the empty array?

0 Kudos
Message 4 of 10
(4,454 Views)
Solution
Accepted by topic author patrick.wright

I just figured out what is happening.  Once I click the cancel button, an event is generated which causes the shift register to get the empty array and the loop to exit.  I don't care about this as this is what is supposed to happen.  However, the button unpress (false) event still remains in the queue until I reopen the VI at which point it is immediately processed.  Since the button is unpressed, the loop does not exit, however the shift register is cleared for the next iteration.

 

Solution: I just made sure to wire up the shift register across the event so that cannot happen.

Message 5 of 10
(4,448 Views)

What is the mechanical action of your Cancel button?  It should be Latched when Released.  But it sounds like you might have Switched Until Released which would cause an event on both the Switch Press and the Switch Release.

0 Kudos
Message 6 of 10
(4,422 Views)

@patrick.wright wrote:

...

 

Solution: I just made sure to wire up the shift register across the event so that cannot happen.


 

Spoiler

The first time I encountered the complications that come from an event structure that uses "use default if not wired" (back in LV 7.1) it took me quite a while to figure out what was the problem.

 

I had delivered operational code and then another developer add a new event and failed to wire the across. The new event was a "once in a blue moon type event" so everything seemed to work fine until that blue moon occurred. This resulted in a default file ref when that happened.

 

Ever since then the "use default" option in an event structure makes me shudder...

 

 

Spoiler

A lot like cutting the end off our thumb with a razor knife will forever make you cringe when watching someone else use a razor knife in an unsafe manner.

 

Spoiler
Technically it is called an evulsion when you cut off a body part that does not involve a bone.

 

So I avoid the "use Default" just so I can read the code without being disturbed.

 

Ben 

Retired Senior Automation Systems Architect with Data Science Automation LabVIEW Champion Knight of NI and Prepper LinkedIn Profile YouTube Channel
0 Kudos
Message 7 of 10
(4,411 Views)


 

Spoiler

The first time I encountered the complications that come from an event structure that uses "use default if not wired" (back in LV 7.1) it took me quite a while to figure out what was the problem.

 

I had delivered operational code and then another developer add a new event and failed to wire the across. The new event was a "once in a blue moon type event" so everything seemed to work fine until that blue moon occurred. This resulted in a default file ref when that happened.

 

Ever since then the "use default" option in an event structure makes me shudder...

 

So I avoid the "use Default" just so I can read the code without being disturbed.

 

Ben 


I've considered writing a VI analyzer check for any output terminal with "use default if unwired" selected that has all of its frames wired at the time of analysis, just to avoid this.  Haven't got around to it yet...

Message 8 of 10
(4,396 Views)

Some people like the fact that the default tunnel for event structures is "Use default values if unwired".  I am NOT one of them.

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
Message 9 of 10
(4,388 Views)

@billko wrote:

Some people like the fact that the default tunnel for event structures is "Use default values if unwired".  I am NOT one of them.


I definitely agree with that.  And for others who agree, be sure to go to Tst's idea Output tunnels from event structure should default to NOT "Use Default if Unwired"

and add your kudoes.

0 Kudos
Message 10 of 10
(4,377 Views)