-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attributes can accept kwargs used to populate EPICS records fields
- Loading branch information
Showing
4 changed files
with
94 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
def get_common_record_fields(): | ||
return [ | ||
"SCAN", | ||
"PINI", | ||
"PHAS", | ||
"EVNT", | ||
"PRIO", | ||
"DISV", | ||
"DISA", | ||
"SDIS", | ||
"PROC", | ||
"DISS", | ||
"LSET", | ||
"LCNT", | ||
"PACT", | ||
"FLNK", | ||
] | ||
|
||
|
||
def get_mbb_record_fields(): | ||
return [ | ||
"ZRST", | ||
"ONST", | ||
"TWST", | ||
"THST", | ||
"FRST", | ||
"FVST", | ||
"SXST", | ||
"SVST", | ||
"EIST", | ||
"NIST", | ||
"TEST", | ||
"ELST", | ||
"TVST", | ||
"TTST", | ||
"FTST", | ||
"FFST", | ||
] | ||
|
||
|
||
def get_epics_record_fields(): | ||
return get_common_record_fields() + get_mbb_record_fields() | ||