summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ufo: set timeouts to 0 and infinite appropriatelyMatthias Vogelgesang2015-04-101-5/+2
| | | | | Infinite prevents premature interruption with external triggers, 0 will not wait more than necessary to remove stale frames.
* ufo: use DEFAULT stop flag to interrupt grabbingMatthias Vogelgesang2015-04-101-1/+1
|
* ufo: move pcilib_start/stop backMatthias Vogelgesang2015-04-101-12/+15
|
* ufo: read stale frames after recordingMatthias Vogelgesang2015-04-101-1/+8
| | | | On a reasonably fast machine this might take up to 0.1 seconds.
* ufo: trigger type must be 0 for AUTO modeMatthias Vogelgesang2015-04-091-1/+2
|
* ufo: set bit 14 if AUTO or EXTERNAL trigger sourceMatthias Vogelgesang2015-04-091-1/+2
|
* ufo: update trigger logicMatthias Vogelgesang2015-04-091-2/+2
|
* ufo: implement trigger typeMatthias Vogelgesang2015-03-311-17/+8
|
* Remove old GtkDoc-based docsMatthias Vogelgesang2015-03-314-114/+0
|
* Switch to trigger source/type semanticsMatthias Vogelgesang2015-03-315-45/+78
| | | | | | | This change makes the naming more consistent but will break client and plugin code. The main idea is to specify a trigger source (AUTO being a virtual source) which denotes how causes a trigger and a trigger type which denotes when triggering happens (edge or level).
* ufo: enable/disable external triggeringMatthias Vogelgesang2015-03-311-3/+12
|
* Remove unused variableMatthias Vogelgesang2015-03-301-2/+0
|
* Revert "ufo: fix readout timeouts ..."Matthias Vogelgesang2015-03-301-28/+23
| | | | This reverts commit 378770200967f6e5b10152c9b094b835b4216c92.
* ufo: start/stop pcilib only onceMatthias Vogelgesang2015-03-301-4/+13
|
* ufo: check trigger errorMatthias Vogelgesang2015-03-271-1/+3
|
* ufo: Unconditionally set the streaming bitMatthias Vogelgesang2015-03-271-6/+2
| | | | That way we will reset the bit on first run if trigger mode is not AUTO.
* ufo: fix readout timeouts ...Matthias Vogelgesang2015-03-271-23/+28
|
* Use pkg-config to determine GI supportMatthias Vogelgesang2015-03-263-3/+39
|
* Document camera propertiesMatthias Vogelgesang2015-03-235-4/+676
|
* tango: add Trigger() commandMatthias Vogelgesang2015-03-171-0/+4
|
* tango: provide an "image" attributeMatthias Vogelgesang2015-03-171-1/+7
|
* tango: map enums to UShortMatthias Vogelgesang2015-03-171-2/+9
| | | | Not nice but will do the trick.
* Add TANGO serverMatthias Vogelgesang2015-03-173-0/+166
|
* pco: Fixed missing arguments in calls to uca_camera_set_writableTimo Dritschler2015-03-161-2/+2
|
* pco: use simple stop frame grabber APIMatthias Vogelgesang2015-03-161-1/+1
| | | | Apparently, SiliconSoftware dropped support for the extended version ...
* ufo: check error codes after read/write regsMatthias Vogelgesang2015-03-111-8/+32
|
* Merge pull request #64 from ufo-kit/WriteRestrictionPolicyMatthias Vogelgesang2015-03-098-14/+63
|\ | | | | Write restriction policy
| * Added test case for 'no write during acquisition' policyTimo Dritschler2015-03-091-1/+5
| |
| * Added check for 'writable during acquisition' to all set_property callsTimo Dritschler2015-03-097-13/+58
|/
* Fixed a crash when passing a 'NULL' parameter to get_camerahTimo Dritschler2015-01-231-1/+4
|
* mock: Fake delay caused by exposureMatthias Vogelgesang2014-12-181-0/+6
|
* Add error type for write methodMatthias Vogelgesang2014-12-172-0/+3
|
* Add uca_camera_write to write arbitrary dataMatthias Vogelgesang2014-12-162-0/+39
| | | | This is necessary for cameras that provide a custom calibration.
* Merge pull request #62 from ufo-kit/getcamerahMatthias Vogelgesang2014-12-103-0/+117
|\ | | | | get_camerah interface
| * Added new get_camerah (Get Camera Hash) interface to Pugin ManagerTimo Dritschler2014-12-103-0/+117
|/ | | | Added unit-test to test/test-mock for the new get_camerah interface
* Export plugin dir in the pkg-config descriptionMatthias Vogelgesang2014-12-051-0/+1
|
* Remove disfunctional pluginMatthias Vogelgesang2014-12-054-829/+1
|
* Fix UI loading logic one more time ...Matthias Vogelgesang2014-12-041-4/+4
|
* Reset error variableMatthias Vogelgesang2014-12-041-0/+1
|
* If glade file cannot be load, try locallyMatthias Vogelgesang2014-12-041-1/+6
|
* xkit: allow to set the fast shift registerMatthias Vogelgesang2014-12-011-1/+72
|
* xkit: remove unused timerMatthias Vogelgesang2014-12-011-4/+0
|
* Make benchmark output parse friendlyMatthias Vogelgesang2014-12-011-13/+12
|
* Fix grab if Python is not usedMatthias Vogelgesang2014-12-011-0/+3
|
* benchmark: print message if camera not foundMatthias Vogelgesang2014-12-011-5/+2
|
* Pick release notes of version 1.6.2Matthias Vogelgesang2014-11-141-0/+9
|
* Fix #61 causing a race conditionMatthias Vogelgesang2014-11-131-2/+10
| | | | | The buffer thread now waits on the *intent* to stop the recording (i.e. the internal state) instead of using the external state information.
* Pick release notes of version 1.6.1Matthias Vogelgesang2014-10-291-1/+14
|
* Merge pull request #60 from ufo-kit/release-gilMatthias Vogelgesang2014-10-243-1/+41
|\ | | | | Release GIL
| * Add Python support code to release GIL on grabMatthias Vogelgesang2014-10-243-1/+41
|/ | | | | A compile time switch WITH_PYTHON_MULTITHREADING has been added that toggles GIL releasing.