We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35a0061 commit a98df60Copy full SHA for a98df60
tests/example_softioc.py
@@ -67,9 +67,10 @@ def run(pv_prefix="SOFTIOC_TEST_DEVICE"):
67
68
69
def run_initial_value(pv_prefix="SOFTIOC_INITIAL_DEVICE"):
70
- epics_options = EpicsCAOptions(ca_ioc=EpicsIOCOptions(pv_prefix=pv_prefix))
71
controller = InitialValuesController()
72
- fastcs = FastCS(controller, [epics_options])
+ fastcs = FastCS(
+ controller, [EpicsCATransport(ca_ioc=EpicsIOCOptions(pv_prefix=pv_prefix))]
73
+ )
74
fastcs.run()
75
76
0 commit comments