summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-04-20Prevent building doc targets all the timeMatthias Vogelgesang
2012-04-19pf: Use correct frame grabber formatMatthias Vogelgesang
2012-04-19Declare uca_camera_props rather than defineMatthias Vogelgesang
2012-04-19Add a bit of documentationMatthias Vogelgesang
2012-04-19Add Photon FocusMatthias Vogelgesang
2012-04-19Merge branch 'rewrite-props'Matthias Vogelgesang
2012-04-19Export base properties and string arrayMatthias Vogelgesang
The benefits are two-fold: Camera implementations "know" which base properties exist without looking into the implementation source. Moreover, they can re-use the property strings rather than stating them over and over again. These change should reduce potential c&p errors.
2012-04-19fixed libdirVolker Kaiser
2012-04-19CI_INSTALL_PREFIX addedVolker Kaiser
2012-04-18Now really fix it ...Matthias Vogelgesang
2012-04-18Only reference docs for cameras that are builtMatthias Vogelgesang
2012-04-18Generate documentation with gtk-docMatthias Vogelgesang
2012-04-18Add not-implemented error for ufo readoutMatthias Vogelgesang
2012-04-18Fix out-of-bounds errorsMatthias Vogelgesang
It's a bit strange that I only get warnings at release builds but not at debug builds.
2012-04-17Print the current frame as feed-backMatthias Vogelgesang
2012-04-17Implement asynchronous recordingMatthias Vogelgesang
2012-04-17Make exposure time writeableMatthias Vogelgesang
2012-04-17Fix potential overflow errorMatthias Vogelgesang
2012-04-17Add prelimary UFO camera supportMatthias Vogelgesang
2012-04-17Fix wrong type prefixMatthias Vogelgesang
2012-04-13Fix multiple recordingsMatthias Vogelgesang
2012-04-12Check errors and fix small issuesMatthias Vogelgesang
2012-04-12Allocate memory only when size has changedMatthias Vogelgesang
2012-04-12Implement readout-afte-record modeMatthias Vogelgesang
2012-04-10Fix hard to detect problemsMatthias Vogelgesang
2012-04-02Add test to measure lib overheadMatthias Vogelgesang
2012-03-30Fix some problems that occur with the 4000Matthias Vogelgesang
2012-03-21Merge patch from Volker KaiserMatthias Vogelgesang
2012-03-08Fix mock cameraMatthias Vogelgesang
All unit tests pass again
2012-03-08Quick fix for openSUSE 11.3 with GLib 2.24Matthias Vogelgesang
2012-03-06Implement single frame grabbingMatthias Vogelgesang
2012-03-06pco: Implement mandatory propertiesMatthias Vogelgesang
2012-03-05Build mock camera by default and fix warningMatthias Vogelgesang
2012-03-05Add factory method to create new camerasMatthias Vogelgesang
2012-03-05Complete async xfer infrastructureMatthias Vogelgesang
2012-03-05Add asynchronous xfer propertyMatthias Vogelgesang
2012-03-05Fix error handlingMatthias Vogelgesang
Obviously, unit tests pay off.
2012-03-05Change recording property only on successMatthias Vogelgesang
2012-03-05Remove cruftMatthias Vogelgesang
2012-03-05Locate place where to put tango server instantiationMatthias Vogelgesang
2012-03-05Use property notification instead of signalMatthias Vogelgesang
Up to this point we used a custom signal to notify about starting and stopping recording of data. However, such signals come (almost) for free for each property. This way, you can query "is-recording" but also be notified when "is-recording" was changed by the camera itself.
2012-03-04Add callback func and change data to gpointerMatthias Vogelgesang
2012-03-04Remove "property-changed" signalMatthias Vogelgesang
There is already the nice "notify" signal that does essentially the same with a twist. It also allows per-property signals by calling g_signal_connect(cam, "notify::cooling-point", G_CALLBACK(func), NULL); Nice.
2012-03-04Add cooling point mechanismMatthias Vogelgesang
2012-03-04Handle Framegrabber errors more gracefullyMatthias Vogelgesang
2012-03-03pco: Binnings arrayMatthias Vogelgesang
2012-03-03Add start/stop signalMatthias Vogelgesang
2012-03-02Test property signalsMatthias Vogelgesang
2012-03-02Make available binnings mandatoryMatthias Vogelgesang
2012-03-02Make UcaCamera a base class not an interfaceMatthias Vogelgesang