diff options
author | Andy Wortman <ixineeringeverywhere@gmail.com> | 2019-03-15 16:40:04 -0700 |
---|---|---|
committer | Andy Wortman <ixineeringeverywhere@gmail.com> | 2019-03-15 16:40:04 -0700 |
commit | 9cb761930e158a159681194734f0d1b925ec2ed6 (patch) | |
tree | 8d7abdec92b1cb7d94963a56e3ea06ee69df8c59 /src/qhyccd/QHYCCDCam.rs | |
parent | 132d623a422e1b73f6e5d8911a82a75290637d10 (diff) |
cancel any existing exposure/readout operation on camera connection
Diffstat (limited to 'src/qhyccd/QHYCCDCam.rs')
-rw-r--r-- | src/qhyccd/QHYCCDCam.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qhyccd/QHYCCDCam.rs b/src/qhyccd/QHYCCDCam.rs index 6194835..37deef9 100644 --- a/src/qhyccd/QHYCCDCam.rs +++ b/src/qhyccd/QHYCCDCam.rs @@ -115,6 +115,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; |