Skip to content

Commit

Permalink
Merge pull request #1052 from lnls-sirius/orbintlk-fixes
Browse files Browse the repository at this point in the history
General OrbIntlk fixes
  • Loading branch information
anacso17 authored Dec 12, 2023
2 parents ecd6b6a + 69e01f4 commit a7ed6c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion siriuspy/siriuspy/orbintlk/csdev.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ def EVG_CONFIGS(cls):

hlevts = _HLTimeSearch.get_hl_events()
evtin0 = int(hlevts['Intlk'].strip('Evt'))
evtin1 = int(hlevts['ItlkR'].strip('Evt'))
evtin2 = int(hlevts['DCT13'].strip('Evt'))
evtin3 = int(hlevts['DCT14'].strip('Evt'))
evtout = int(hlevts['RFKll'].strip('Evt'))
Expand All @@ -168,7 +169,7 @@ def EVG_CONFIGS(cls):
('IntlkCtrlRepeat-Sel', 0),
('IntlkCtrlRepeatTime-SP', 0),
('IntlkEvtIn0-SP', evtin0),
('IntlkEvtIn1-SP', 118),
('IntlkEvtIn1-SP', evtin1),
('IntlkEvtIn2-SP', evtin2),
('IntlkEvtIn3-SP', evtin3),
('IntlkEvtOut-SP', evtout),
Expand Down
2 changes: 1 addition & 1 deletion siriuspy/siriuspy/orbintlk/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class App(_Callback):

SCAN_FREQUENCY = 1 # [Hz]

def __init__(self, tests=True):
def __init__(self, tests=False):
"""Class constructor."""
super().__init__()
self._is_dry_run = tests
Expand Down

0 comments on commit a7ed6c1

Please sign in to comment.