LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

I/O other increases steadily in labview 8.2.1

 
The I/O other item in windows task manager increases steadily when a loop is running in labview 8.2.1.   Why? 
I use labview 8.2.1 and windows xp sp2.But Labview 7.1 is not.
0 Kudos
Message 1 of 5
(2,672 Views)
Did you forget to put the Wait primitive inside the loop, with a small delay value?
- Partha ( CLD until Oct 2024 🙂 )
0 Kudos
Message 2 of 5
(2,666 Views)

Thanks.

I  read a PXI 6528 digital input status inside a while loop, delay is 50ms.

 But memory increases continuously, the PXI system run slowly after 48 hours.

what can I  do?



帖子被wcon在03-17-2008 09:12 AM时编辑过了

帖子被wcon在03-17-2008 09:14 AM时编辑过了
0 Kudos
Message 3 of 5
(2,651 Views)
It is a example.
0 Kudos
Message 4 of 5
(2,644 Views)
You keep creating a new channel in your program. You need either to create it once or to close the channel after you are done in the sub vi. I suggest you create a shift register or place the initialization of the channel outside the main loop and inputted into the subvi. Remember to close the channel when done.
0 Kudos
Message 5 of 5
(2,639 Views)