summaryrefslogtreecommitdiffstats
path: root/src/cameras/pco.c
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2011-06-07 15:45:06 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2011-06-07 15:45:06 +0200
commitbf83e234755ea390c92f05c4b701cf8ee57c2526 (patch)
tree075b786b0fb954c80480b2d17e4a9082fd7d56c5 /src/cameras/pco.c
parentbbc279b61484fb073a6d0ab6cc368f26ded5f4d3 (diff)
downloaduca-bf83e234755ea390c92f05c4b701cf8ee57c2526.tar.gz
uca-bf83e234755ea390c92f05c4b701cf8ee57c2526.tar.bz2
uca-bf83e234755ea390c92f05c4b701cf8ee57c2526.tar.xz
uca-bf83e234755ea390c92f05c4b701cf8ee57c2526.zip
Hotpixel correction and cam_state -> uca.h
Diffstat (limited to 'src/cameras/pco.c')
-rw-r--r--src/cameras/pco.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cameras/pco.c b/src/cameras/pco.c
index c11ba24..e643ab0 100644
--- a/src/cameras/pco.c
+++ b/src/cameras/pco.c
@@ -90,6 +90,9 @@ static uint32_t uca_pco_set_property(struct uca_camera_priv *cam, enum uca_prope
case UCA_PROP_TIMESTAMP_MODE:
return pco_set_timestamp_mode(GET_PCO(cam), *((uint16_t *) data));
+ case UCA_PROP_HOTPIXEL_CORRECTION:
+ return pco_set_hotpixel_correction(GET_PCO(cam), *(uint32_t *) data);
+
default:
return err | UCA_ERR_INVALID;
}
@@ -219,6 +222,14 @@ static uint32_t uca_pco_get_property(struct uca_camera_priv *cam, enum uca_prope
}
break;
+ case UCA_PROP_HOTPIXEL_CORRECTION:
+ {
+ SC2_Hot_Pixel_Correction_Mode_Response response;
+ if (pco_read_property(pco, GET_HOT_PIXEL_CORRECTION_MODE, &response, sizeof(response)) == PCO_NOERROR)
+ uca_set_void(data, uint32_t, response.wMode);
+ }
+ break;
+
default:
return UCA_ERR_CAMERA | UCA_ERR_PROP | UCA_ERR_INVALID;
}