summaryrefslogtreecommitdiff
path: root/src/qhyccd
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2019-03-15 19:09:40 -0700
committeriximeow <me@iximeow.net>2019-03-15 19:09:40 -0700
commit39a4ce0dc9e55d488240d2e5a353f8e86dbb4a51 (patch)
tree1f930ccde1ebadf8dc13e8c17ddd373bff887757 /src/qhyccd
parent7dbe9921deaf57e9908ff95a806bcffd4bec7dd3 (diff)
parent3599379b5aadff8309e59a4dae6e834ba2511c84 (diff)
Merge branch 'master' of 192.168.1.6:/toy/c/asi/calibration_collector
Diffstat (limited to 'src/qhyccd')
-rw-r--r--src/qhyccd/QHYCCDCam.rs1
-rw-r--r--src/qhyccd/mod.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/qhyccd/QHYCCDCam.rs b/src/qhyccd/QHYCCDCam.rs
index 9988791..8419bb7 100644
--- a/src/qhyccd/QHYCCDCam.rs
+++ b/src/qhyccd/QHYCCDCam.rs
@@ -116,6 +116,7 @@ extern "C" {
imagew: *mut os::raw::c_int, imageh: *mut os::raw::c_int,
pixelw: *mut os::raw::c_double, pixelh: *mut os::raw::c_double,
bpp: *mut os::raw::c_int) -> os::raw::c_int;
+ pub fn CancelQHYCCDExposingAndReadout(handle: *mut os::raw::c_void) -> os::raw::c_int;
pub fn ControlQHYCCDTemp(handle: *mut os::raw::c_void, target: os::raw::c_double) -> os::raw::c_int;
pub fn SetQHYCCDDebayerOnOff(handle: *mut os::raw::c_void, onoff: os::raw::c_int) -> os::raw::c_int;
pub fn SetQHYCCDBinMode(handle: *mut os::raw::c_void, wbin: os::raw::c_int, hbin: os::raw::c_int) -> os::raw::c_int;
diff --git a/src/qhyccd/mod.rs b/src/qhyccd/mod.rs
index 4404ddb..a7fb784 100644
--- a/src/qhyccd/mod.rs
+++ b/src/qhyccd/mod.rs
@@ -64,6 +64,7 @@ pub fn acquire(camera_idx: i32) -> Result<Camera> {
}
check(QHYCCDCam::SetQHYCCDStreamMode(handle, 0))?; // 0 means single frame mode...
check(QHYCCDCam::InitQHYCCD(handle))?;
+ check(QHYCCDCam::CancelQHYCCDExposingAndReadout(handle))?;
Ok(Camera {
handle: handle
})