From 5c4a18958fdbb6d76b67de15c63462889324851b Mon Sep 17 00:00:00 2001
From: awatlet <arnaud.watlet@umons.ac.be>
Date: Wed, 4 Oct 2023 12:23:10 +0200
Subject: [PATCH] Fixes gain_auto

---
 ohmpi/hardware_components/abstract_hardware_components.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ohmpi/hardware_components/abstract_hardware_components.py b/ohmpi/hardware_components/abstract_hardware_components.py
index 965e4744..06b6f8ba 100644
--- a/ohmpi/hardware_components/abstract_hardware_components.py
+++ b/ohmpi/hardware_components/abstract_hardware_components.py
@@ -281,7 +281,7 @@ class TxAbstract(ABC):
         self.exec_logger.debug(f'Setting TX ADC gain to {value}')
 
     @abstractmethod
-    def adc_gain_auto(self):
+    def _adc_gain_auto(self):
         pass
 
     @abstractmethod
@@ -398,7 +398,7 @@ class RxAbstract(ABC):
         self.exec_logger.debug(f'Setting RX ADC gain to {value}')
 
     @abstractmethod
-    def adc_gain_auto(self):
+    def _adc_gain_auto(self):
         pass
 
     @property
-- 
GitLab