Timeout expired before operation completed
45 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
g=visadev("GPIB::18::INSTR")
writeline(g,"Display:Contrast")
data=readline(g)
Hello, I am currently trying to read and write to my PSA spectrum analyzer. visadev is successfully connecting it, but I writeline and readline, when added into my code, always get the "Timeout expired before operation completed" error message. I do not understand why this is not working and how I can fix it. Any advice is greatly apprectiated!
1 commentaire
LO
le 26 Août 2024
Déplacé(e) : Walter Roberson
le 26 Août 2024
I am having the same issue with writing data acquired through a PCIexpress National Instrument acquisition card.
The issue does not occur all the time. Just sometimes...
I am not sure this is a memory issue .
I am using the same scripts and routines as usual, no major changes to the system, HD space is not close to end...I have no idea... thank you for any tip
Réponses (2)
Adit Kirtani
le 5 Juil 2023
Hi Madeline,
From the issue you have described in your question, I have understood that the write operation has not finished within the default time to complete a write operation. You can change this value by using the following code snippet:
timeout_duration = 20 %Change to whatever value you wish
v = visadev( "GPIB::18::INSTR");
v.timeout = timeout_duration
%Now perform your write / read operations
You can view more details regarding the read and write properties of the visadev object using this documentation link:
I hope this helps,
Adit Kirtani
0 commentaires
Andrei
le 22 Nov 2023
A couple of suggestions:
- Check that the SCPI command is correct. Not sure what the instrument model is, but I don't see this command in Keysight's PSA Spectrum Analyzer User's and Programmer's Reference Volume 1 - Core Spectrum Analyzer Functions (keysight.com)
- If you are expecting a response from the instrument, the command string should have a ? at the end. In that case instead of writeline followed by readline you can also use writeread function. For example writeread(g,"*IDN?")
See also:
0 commentaires
Voir également
Catégories
En savoir plus sur Instrument Control Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!