09-02-2016 04:42 AM
Maybe a stupid question. But in Labview when I tried to run the program stops at a block (unbundle) which starts blinking. Then I can press 'Step over unbundle' and the program goes to next block. I just want to run the program without stops. It is not a breakpoint there (breakpoint manager empty). So how can I disable the automatic single stepping?
Solved! Go to Solution.
09-02-2016 04:46 AM
Hi Lennart,
when I tried to run the program stops at a block (unbundle) which starts blinking.
This usually indicates a breakpoint…
Then I can press 'Step over unbundle' and the program goes to next block.
Usually the "pause" menu button should be active then - and you only need to deacitvate it…
Please attach your VI to let us examine it!
09-02-2016 05:11 AM
09-02-2016 10:04 AM
Pause did the trick indeed. Didn't expect a stop by pausing. It did come back after I used the stop button.
09-03-2016 04:16 AM
@LennartM wrote:Pause did the trick indeed. Didn't expect a stop by pausing. It did come back after I used the stop button.
That has to be one of the most confusing posts I've ever read. You marked the issue as "solved", yet it seems you still have the problem - or do you? I have no idea what "It did come back after I used the stop button" means. What came back? The problem?
09-05-2016 07:08 AM
Pressing the pause button again solved the issue. I also worked arround it by closing the vi. But it is not a logic way of stopping a debug method (the stepping) by hitting pause. I would expect it to stop when pressing the stop button or by deleting a breakpoint or so. But not with a pause button. So although relativly easy with my way of thinking it took some time to find this out 🙂
09-05-2016 07:38 AM - edited 09-05-2016 07:39 AM
Hi Lennart,
But it is not a logic way of stopping a debug method (the stepping) by hitting pause.
When you set a breakpoint the VI will pause when DATAFLOW hits this breakpoint.
To continue with execution you need to release the pause button - seems very logical to me as breakpoint debugging with other programming languages work the same way (in my experience)…