I have a prog that reads a gpib dev every second and I would like to have an led that turns on when the app starts and turns off when the app ends. The problem I have is the nonlinear execution of LV code seems to keep me from implementing this old fashioned pseudo code:
turn non led
while DIO_bit_1 not set
read gpib
wait 1 sec
end while
turn off led
All my attempts to use shift, local, and while loops have failed. The solution escapes me.
Can anyone help?
Thank you,