mirror of https://github.com/m-labs/artiq.git
tdc/tpz driver: fix missing close method in simulated device
This commit is contained in:
parent
1d052095ee
commit
988ec5c7e2
|
@ -1323,6 +1323,9 @@ class TpzSim:
|
||||||
self.voltage_limit = 150
|
self.voltage_limit = 150
|
||||||
self.hub_analog_input = 1
|
self.hub_analog_input = 1
|
||||||
|
|
||||||
|
def close(self):
|
||||||
|
pass
|
||||||
|
|
||||||
def module_identify(self):
|
def module_identify(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@ -1406,6 +1409,9 @@ class TpzSim:
|
||||||
|
|
||||||
|
|
||||||
class TdcSim:
|
class TdcSim:
|
||||||
|
def close(self):
|
||||||
|
pass
|
||||||
|
|
||||||
def module_identify(self):
|
def module_identify(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue