fix: default PV names in template
This commit is contained in:
+2
-4
@@ -18,9 +18,7 @@ PV = get_pv_class()
|
||||
class PVs(BasePVs):
|
||||
# Option 1:
|
||||
## Service specific PVs from dedicated IOC
|
||||
my_pv1 = PV(
|
||||
"AGEBD-CPCL-{{ service_name_upper }}-DEV:AO"
|
||||
) # TODO: is this a good PV to use?
|
||||
my_pv1 = PV("AGEBD-{{ service_name_upper }}:AO") # TODO: is this a good PV to use?
|
||||
|
||||
## Service specific PVs from other IOCs
|
||||
# ...
|
||||
@@ -37,7 +35,7 @@ class PVs(BasePVs):
|
||||
# Option 2:
|
||||
## Service specific PVs from dedicated IOC
|
||||
self.my_pv2 = PV(
|
||||
"AGEBD-CPCL-{{ service_name_upper }}-DEV:BO"
|
||||
"AGEBD-{{ service_name_upper }}:BO"
|
||||
) # TODO: is this a good PV to use?
|
||||
|
||||
## Service specific PVs from other IOCs
|
||||
|
||||
Reference in New Issue
Block a user