The VisAO Camera
EDTutils.h
Go to the documentation of this file.
1 /************************************************************
2 * EDTutils.h
3 *
4 * Author: Jared R. Males (jrmales@email.arizona.edu)
5 *
6 * Declarations for some utility functions pertaining to the EDT framegrabber PCI card.
7 *
8 * Developed as part of the Magellan Adaptive Optics system.
9 ************************************************************/
10 
11 /** \file EDTutils.h
12  * \author Jared R. Males
13  * \brief Declarations for some utility functions pertaining to the EDT framegrabber PCI card.
14  *
15  *
16 */
17 
18 
19 #ifndef __EDTutils_h__
20 #define __EDTutils_h__
21 
22 #ifdef __cplusplus
23 extern "C"
24 {
25 #endif
26 
27 #include "edtinc.h"
28 
29 #include "edt_trace.h"
30 
31 #include <stdlib.h>
32 #include <ctype.h>
33 
34 ///A local version of initcam.
35 /** Just a copy of initcam.c, but with only fname for options
36  */
37 int initcam(const char * fname, const char *bdir);
38 
39 ///A local version of setdebug
40 /** Just a copy of setdebug.c, but with only the -k option
41  */
42 int setdebug(const char * kbuff);
43 
44 #ifdef __cplusplus
45 } //extern "C"
46 #endif
47 
48 #endif //__EDTutils_h__
int setdebug(const char *kbuff)
A local version of setdebug.
Definition: EDTutils.c:350
int initcam(const char *fname, const char *bdir)
A local version of initcam.
Definition: EDTutils.c:46