blob: 6a3db626df6cf9b0606ce22f6ac2aac5e07bfae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CAMERA_H
#define CAMERA_H
void camera_init(char *dev_name, unsigned int x_res, unsigned int y_res);
char *camera_get_image();
void camera_deinit();
int camera_get_image_size();
#endif
|