Fixed 'brief' doxygen comment.
[microdia.git] / mt9vx11.h
blob1ecdcc0b2cc80306232211345fc59204c3e94043
1 /**
2 * @file mt9vx11.h
3 * @author Comer352l
4 * @date 2008-04-25
5 * @version v0.0.0
7 * @brief Common functions and data for the Micron MT9Vx11 sensors.
9 * @note Copyright (C) Comer352l
11 * @par Licences
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #ifndef MT9VX11_H
29 #define MT9VX11_H
32 #define MT9V111_I2C_SLAVE_ADDRESS 0x5c
33 #define MT9V011_I2C_SLAVE_ADDRESS 0x5d
35 #define MT9V111_IFP_ADDRESS_SPACE 0x01
36 #define MT9V111_SENSOR_ADDRESS_SPACE 0x04
40 int mt9v111_select_address_space(struct usb_microdia * dev, __u8 address_space);
42 int mt9vx11_sensor_probe(struct usb_microdia * dev);
44 int mt9vx11_set_exposure(struct usb_microdia *dev);
46 int mt9vx11_set_hvflip(struct usb_microdia *dev);
50 #endif