Commit 156c0993b586eb5edb519fcd6359447021874db0

Authored by bmarechal
1 parent 84ec7275a8
Exists in master

fix Sym5125A getValue

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

instruments/Sym5125A.py
... ... @@ -34,7 +34,8 @@
34 34 pass
35 35  
36 36 def getValue(self):
37   - mes = self.tn.read_until('\n').replace('\r\n','')
  37 + for i in range(1000):
  38 + mes = self.tn.read_until('\n').replace('\r\n','')
38 39 return mes + '\n'
39 40  
40 41 def read(self):