Skip to content

Commit

Permalink
BUGFIX: SVBONY CCD: Stop cooling at disconnection (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
jctk authored Aug 6, 2024
1 parent 160a5a2 commit de09e79
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions debian/indi-svbony/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
indi-svbony (1.4.2) bionic; urgency=low

* BUGFIX: SVBONYCCD: Stop cooling at disconnection

-- Tetsuya Kakura <jcpgm@outlook.jp> Tue, 6 Aug. 2024 4:00:00 +0900

indi-svbony (1.4.1) bionic; urgency=low

* SVBONYCCD: Workaround for an issue that rarely retrieves the previous image.
Expand Down
2 changes: 1 addition & 1 deletion indi-svbony/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(GNUInstallDirs)

set (SVBONY_VERSION_MAJOR 1)
set (SVBONY_VERSION_MINOR 4)
set (SVBONY_VERSION_PATCH 1)
set (SVBONY_VERSION_PATCH 2)

find_package(CFITSIO REQUIRED)
find_package(INDI REQUIRED)
Expand Down
3 changes: 3 additions & 0 deletions indi-svbony/svbony_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,9 @@ bool SVBONYBase::Disconnect()
if (isSimulation() == false)
{
SVBStopVideoCapture(mCameraInfo.CameraID);
if (HasCooler()) {
activateCooler(false);
}
SVBCloseCamera(mCameraInfo.CameraID);
}

Expand Down

0 comments on commit de09e79

Please sign in to comment.