Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding three commands to tunable laser for the thermal sensor #781

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions doc/version-history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ v21.0.0

* MTM2

* Improve the description of ``MTM2_forceErrorTangent`` topic.

* Improve the description of ``MTM2_forceErrorTangent`` topic.

* Added command for mask rotation for ts_CBP

Expand All @@ -41,6 +40,10 @@ v21.0.0

* Improve support for publishing block id.

* TunableLaser

* Adding 3 commands to TunableLaser: ``changeTempCtrlSetpoint``, ``turnOnTempCtrl``, and ``turnOffTempCtrl``.
* Adding 3 events to TunableLaser: ``setPointChanged``, ``tempCtrlOn``, and ``tempCtrlOff``.

v20.1.0
-------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,25 @@
<EFDB_Topic>TunableLaser_command_triggerBurst</EFDB_Topic>
<Description>Trigger an increased burst of energy.</Description>
</SALCommand>
<SALCommand>
<Subsystem>TunableLaser</Subsystem>
<EFDB_Topic>TunableLaser_command_changeTempCtrlSetpoint</EFDB_Topic>
<item>
<EFDB_Name>setpoint</EFDB_Name>
<Description>Set point for the thermal sensor.</Description>
<IDL_Type>float</IDL_Type>
<Units>deg_C</Units>
<Count>1</Count>
</item>
</SALCommand>
<SALCommand>
<Subsystem>TunableLaser</Subsystem>
<EFDB_Topic>TunableLaser_command_turnOnTempCtrl</EFDB_Topic>
<Description>Send command to turn on thermal sensor.</Description>
</SALCommand>
<SALCommand>
<Subsystem>TunableLaser</Subsystem>
<EFDB_Topic>TunableLaser_command_turnOffTempCtrl</EFDB_Topic>
<Description>Send command to turn off thermal sensor.</Description>
</SALCommand>
</SALCommandSet>
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,23 @@ LaserErrorCode_HW_CPU_ERROR = 7304
<Count>1</Count>
</item>
</SALEvent>
<SALEvent>
<Subsystem>TunableLaser</Subsystem>
<EFDB_Topic>TunableLaser_logevent_setPointChanged</EFDB_Topic>
<item>
<EFDB_Name>setPoint</EFDB_Name>
<Description>Value of the temp control set point that was changed</Description>
<IDL_Type>float</IDL_Type>
<Units>deg_C</Units>
<Count>1</Count>
</item>
</SALEvent>
<SALEvent>
<Subsystem>TunableLaser</Subsystem>
<EFDB_Topic>TunableLaser_logevent_tempCtrlOn</EFDB_Topic>
</SALEvent>
<SALEvent>
<Subsystem>TunableLaser</Subsystem>
<EFDB_Topic>TunableLaser_logevent_tempCtrlOff</EFDB_Topic>
</SALEvent>
</SALEventSet>
Loading