Skip to content

Commit

Permalink
Only inform the user about exposure done if we have somewhat long exp…
Browse files Browse the repository at this point in the history
…osure > 3 seconds
  • Loading branch information
knro committed Feb 27, 2019
1 parent 0e8e998 commit e1b083a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 3rdparty/indi-asi/asi_ccd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1899,8 +1899,8 @@ void ASICCD::getExposure()
{
InExposure = false;
PrimaryCCD.setExposureLeft(0.0);
DEBUG(INDI::Logger::DBG_SESSION,
"Exposure done, downloading image...");
if (PrimaryCCD.getExposureDuration() > 3)
LOG_INFO("Exposure done, downloading image...");
pthread_mutex_lock(&condMutex);
exposureSetRequest(StateIdle);
pthread_mutex_unlock(&condMutex);
Expand Down

0 comments on commit e1b083a

Please sign in to comment.