Commit 8b94647f authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Attemps to use the sampling_rate in _vab_pulse

Showing with 2 additions and 2 deletions
+2 -2
...@@ -45,7 +45,7 @@ class OhmPiHardware: ...@@ -45,7 +45,7 @@ class OhmPiHardware:
soh_logger=self.soh_logger)) soh_logger=self.soh_logger))
def _vab_pulse(self, vab, length, sampling_rate=10., polarity=None): def _vab_pulse(self, vab, length, sampling_rate=None, polarity=None):
""" Gets VMN and IAB from a single voltage pulse """ Gets VMN and IAB from a single voltage pulse
""" """
def inject(duration): def inject(duration):
...@@ -69,7 +69,7 @@ class OhmPiHardware: ...@@ -69,7 +69,7 @@ class OhmPiHardware:
self.tx.polarity = polarity self.tx.polarity = polarity
self.tx.voltage = vab self.tx.voltage = vab
injection = Thread(target=inject, kwargs={'length':length}) injection = Thread(target=inject, kwargs={'length':length})
readings = Thread(target=read_values) readings = Thread(target=read_values, kwargs={'sampling_rate': sampling_rate})
# set gains automatically # set gains automatically
self.tx.adc_gain_auto() self.tx.adc_gain_auto()
self.rx.adc_gain_auto() self.rx.adc_gain_auto()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment