Commit 5c4a1895 authored by Arnaud WATLET's avatar Arnaud WATLET
Browse files

Fixes gain_auto

Showing with 2 additions and 2 deletions
+2 -2
...@@ -281,7 +281,7 @@ class TxAbstract(ABC): ...@@ -281,7 +281,7 @@ class TxAbstract(ABC):
self.exec_logger.debug(f'Setting TX ADC gain to {value}') self.exec_logger.debug(f'Setting TX ADC gain to {value}')
@abstractmethod @abstractmethod
def adc_gain_auto(self): def _adc_gain_auto(self):
pass pass
@abstractmethod @abstractmethod
...@@ -398,7 +398,7 @@ class RxAbstract(ABC): ...@@ -398,7 +398,7 @@ class RxAbstract(ABC):
self.exec_logger.debug(f'Setting RX ADC gain to {value}') self.exec_logger.debug(f'Setting RX ADC gain to {value}')
@abstractmethod @abstractmethod
def adc_gain_auto(self): def _adc_gain_auto(self):
pass pass
@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