Skip to content

Commit

Permalink
Add sleep times to azimuth overslew fixup.
Browse files Browse the repository at this point in the history
  • Loading branch information
edennihy committed Nov 8, 2023
1 parent 31c5e87 commit 0e9c36c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/lsst/ts/observatory/control/base_tcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,9 @@ async def slew_icrs(
break
else:
if self._overslew_az:
await asyncio.sleep(self.tel_settle_time)
await self.offset_azel(az=2.0 * 3600.0 * np.cos(alt_az.alt), el=0)
await asyncio.sleep(self.tel_settle_time)
await self.offset_azel(az=-2.0 * 3600.0 * np.cos(alt_az.alt), el=0)
break

Expand Down

0 comments on commit 0e9c36c

Please sign in to comment.