##// END OF EJS Templates
jroIO_usrp.py: nbuffer argument was eliminated
Miguel Valdez -
r727:79a1d6033326
parent child
Show More
@@ -188,8 +188,7 class USRPReader(ProcessingUnit):
188 ippKm = 60,
188 ippKm = 60,
189 online = False,
189 online = False,
190 delay = 60,
190 delay = 60,
191 buffer_size = None,
191 buffer_size = 1024,
192 nbuffer = 1024,
193 **kwargs):
192 **kwargs):
194 '''
193 '''
195 In this method we should set all initial parameters.
194 In this method we should set all initial parameters.
@@ -207,9 +206,6 class USRPReader(ProcessingUnit):
207 delay
206 delay
208 '''
207 '''
209
208
210 if not buffer_size:
211 buffer_size = nbuffer
212
213 if not os.path.isdir(path):
209 if not os.path.isdir(path):
214 raise ValueError, "[Reading] Directory %s does not exist" %path
210 raise ValueError, "[Reading] Directory %s does not exist" %path
215
211
General Comments 0
You need to be logged in to leave comments. Login now