diff options
Diffstat (limited to 'src/uca.c')
-rw-r--r-- | src/uca.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -15,6 +15,10 @@ #include "cameras/uca_ipe.h" #endif +#ifdef HAVE_PHOTRON_FASTCAM +#include "cameras/uca_photron.h" +#endif + struct uca_t *uca_init() { @@ -31,6 +35,9 @@ struct uca_t *uca_init() #ifdef HAVE_IPE_CAM uca_ipe_init, #endif +#ifdef HAVE_PH + uca_photron_init, +#endif NULL }; int i = 0; |