/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera
261 by Suren A. Chilingaryan
Support for new CMOSIS 20MPix camera
1
#ifndef _IPECAMERA_ENV_H
2
#define _IPECAMERA_ENV_H
3
4
typedef enum {
5
    IPECAMERA_DEBUG_RAW_FRAMES_ENV,
6
    IPECAMERA_DEBUG_BROKEN_FRAMES_ENV,
7
    IPECAMERA_DEBUG_RAW_PACKETS_ENV,
8
    IPECAMERA_DEBUG_HARDWARE_ENV,
9
    IPECAMERA_DEBUG_FRAME_HEADERS_ENV,
262 by Suren A. Chilingaryan
Introduce API debugging
10
    IPECAMERA_DEBUG_API_ENV,
261 by Suren A. Chilingaryan
Support for new CMOSIS 20MPix camera
11
    IPECAMERA_MAX_ENV
12
} ipecamera_env_t;
13
14
#ifdef __cplusplus
15
extern "C" {
16
#endif
17
18
const char *ipecamera_getenv(ipecamera_env_t env, const char *var);
19
20
#ifdef __cplusplus
21
}
22
#endif
23
24
#endif /* _IPECAMERA_ENV_H */