Skip to content

Commit

Permalink
Initial addition of reflector
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephParsons committed Jun 11, 2024
1 parent 04bacb5 commit 0e3689b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/news/dm-43456.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Adding Reflector xml which allows opening and closing the flatfield reflector
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://lsst-sal.tuc.noao.edu/schema/SALCommandSet.xsl"?>
<SALCommandSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://lsst-sal.tuc.noao.edu/schema/SALCommandSet.xsd">
<SALCommand>
<Subsystem>Reflector</Subsystem>
<EFDB_Topic>Reflector_command_switchOn</EFDB_Topic>
<Description>Switch on reflector.</Description>
</SALCommand>
<SALCommand>
<Subsystem>Reflector</Subsystem>
<EFDB_Topic>Reflector_command_switchOff</EFDB_Topic>
<Description>Switch off reflector.</Description>
</SALCommand>
</SALCommandSet>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://lsst-sal.tuc.noao.edu/schema/SALEventSet.xsl"?>
<SALEventSet xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://lsst-sal.tuc.noao.edu/schema/SALEventSet.xsd">
<Enumeration>
ReflectorState_Off=0,
ReflectorState_On=1,
ReflectorState_Unknown=2,
ReflectorState_Error=3,
</Enumeration>
<SALEvent>
<Subsystem>Reflector</Subsystem>
<EFDB_Topic>Reflector_logevent_reflectorState</EFDB_Topic>
<Description>Reflector state change</Description>
<item>
<EFDB_Name>reflectorState</EFDB_Name>
<Description>Reflector state; a ReflectorState enum.</Description>
<IDL_Type>int</IDL_Type>
<Units>unitless</Units>
<Count>1</Count>
</item>
</SALEvent>
</SALEventSet>

0 comments on commit 0e3689b

Please sign in to comment.