##// 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 188 ippKm = 60,
189 189 online = False,
190 190 delay = 60,
191 buffer_size = None,
192 nbuffer = 1024,
191 buffer_size = 1024,
193 192 **kwargs):
194 193 '''
195 194 In this method we should set all initial parameters.
@@ -207,9 +206,6 class USRPReader(ProcessingUnit):
207 206 delay
208 207 '''
209 208
210 if not buffer_size:
211 buffer_size = nbuffer
212
213 209 if not os.path.isdir(path):
214 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