Commit 66dab6d9 authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Searches for run_measurement error

Showing with 0 additions and 5 deletions
+0 -5
...@@ -163,11 +163,6 @@ class Tx(TxAbstract): ...@@ -163,11 +163,6 @@ class Tx(TxAbstract):
def polarity(self, polarity): def polarity(self, polarity):
assert polarity in [-1, 0, 1] assert polarity in [-1, 0, 1]
self._polarity = polarity self._polarity = polarity
# debugging code
curframe = inspect.currentframe()
calframe = inspect.getouterframes(curframe, 2)
print(f'polarity called from: {calframe}')
if polarity == 1: if polarity == 1:
print('pin0') print('pin0')
self.pin0.value = True self.pin0.value = True
......
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