Commit 1e69a47a authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Fixes super issues

No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
...@@ -132,7 +132,7 @@ class Tx(TxAbstract): ...@@ -132,7 +132,7 @@ class Tx(TxAbstract):
self.adc_gain = gain self.adc_gain = gain
def current_pulse(self, **kwargs): def current_pulse(self, **kwargs):
super().current_pulse(**kwargs) TxAbstract.current_pulse(self, **kwargs)
self.exec_logger.warning(f'Current pulse is not implemented for the {TX_CONFIG["model"]} board') self.exec_logger.warning(f'Current pulse is not implemented for the {TX_CONFIG["model"]} board')
@property @property
...@@ -188,12 +188,12 @@ class Tx(TxAbstract): ...@@ -188,12 +188,12 @@ class Tx(TxAbstract):
self.DPS.write_register(0x0000, value, 2) self.DPS.write_register(0x0000, value, 2)
def turn_off(self): def turn_off(self):
super().turn_off() TxAbstract.turn_off(self)
self.pin2.value = False self.pin2.value = False
self.pin3.value = False self.pin3.value = False
def turn_on(self): def turn_on(self):
super().turn_on() TxAbstract.turn_on(self)
self.pin2.value = True self.pin2.value = True
self.pin3.value = True self.pin3.value = True
......
...@@ -118,7 +118,7 @@ class Tx(TxAbstract): ...@@ -118,7 +118,7 @@ class Tx(TxAbstract):
self.adc_gain = gain self.adc_gain = gain
def current_pulse(self, **kwargs): def current_pulse(self, **kwargs):
super().current_pulse(**kwargs) TxAbstract.current_pulse(self, **kwargs)
self.exec_logger.warning(f'Current pulse is not implemented for the {TX_CONFIG["model"]} board') self.exec_logger.warning(f'Current pulse is not implemented for the {TX_CONFIG["model"]} board')
@property @property
......
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