Commit 1f78adb2 authored by Arnaud WATLET's avatar Arnaud WATLET
Browse files

Adds pwr_latency as pwr and tx variables

Showing with 2 additions and 2 deletions
+2 -2
......@@ -120,7 +120,7 @@ class Tx(Tx_mb_2023):
self.pin3.value = True
self.exec_logger.debug(f'Switching DPS on')
self._pwr_state = 'on'
time.sleep(self._pwr_latency) # from pwr specs
time.sleep(self._pwr_latency) # from pwr specs
elif state == 'off':
self.pin2.value = False
self.pin3.value = False
......
......@@ -13,7 +13,7 @@ SPECS = {'model': {'default': os.path.basename(__file__).rstrip('.py')},
'voltage_max': {'default': 0},
'current_max': {'default': 100.},
'current_adjustable': {'default': False},
'voltage_adjustable': {'default': True}
'voltage_adjustable': {'default': True},
'pwr_latency':{'default': .3}
}
......
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