![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
This file contains all the functions prototypes for the ov9655.c driver. More...
#include "../Common/camera.h"
Go to the source code of this file.
Macros | |
#define | OV9655_ID 0x96 |
OV9655 ID. More... | |
#define | OV9655_SENSOR_PIDH 0x0A |
OV9655 Registers. More... | |
#define | OV9655_SENSOR_PIDL 0x0B |
#define | OV9655_SENSOR_COM7 0x12 |
#define | OV9655_SENSOR_TSLB 0x3A |
#define | OV9655_SENSOR_MTX1 0x4F |
#define | OV9655_SENSOR_MTX2 0x50 |
#define | OV9655_SENSOR_MTX3 0x51 |
#define | OV9655_SENSOR_MTX4 0x52 |
#define | OV9655_SENSOR_MTX5 0x53 |
#define | OV9655_SENSOR_MTX6 0x54 |
#define | OV9655_SENSOR_BRTN 0x55 |
#define | OV9655_SENSOR_CNST1 0x56 |
#define | OV9655_SENSOR_CNST2 0x57 |
#define | OV9655_BRIGHTNESS_LEVEL0 0xB0 /* Brightness level -2 */ |
OV9655 Features Parameters. More... | |
#define | OV9655_BRIGHTNESS_LEVEL1 0x98 /* Brightness level -1 */ |
#define | OV9655_BRIGHTNESS_LEVEL2 0x00 /* Brightness level 0 */ |
#define | OV9655_BRIGHTNESS_LEVEL3 0x18 /* Brightness level +1 */ |
#define | OV9655_BRIGHTNESS_LEVEL4 0x30 /* Brightness level +2 */ |
#define | OV9655_BLACK_WHITE_BW 0xCC000000000000 /* Black and white effect */ |
#define | OV9655_BLACK_WHITE_NEGATIVE 0xEC808000008080 /* Negative effect */ |
#define | OV9655_BLACK_WHITE_BW_NEGATIVE 0xEC000000000000 /* BW and Negative effect */ |
#define | OV9655_BLACK_WHITE_NORMAL 0xCC808000008080 /* Normal effect */ |
#define | OV9655_CONTRAST_LEVEL0 0x30 /* Contrast level -2 */ |
#define | OV9655_CONTRAST_LEVEL1 0x38 /* Contrast level -1 */ |
#define | OV9655_CONTRAST_LEVEL2 0x40 /* Contrast level 0 */ |
#define | OV9655_CONTRAST_LEVEL3 0x50 /* Contrast level +1 */ |
#define | OV9655_CONTRAST_LEVEL4 0x60 /* Contrast level +2 */ |
#define | OV9655_COLOR_EFFECT_NONE 0xCC808000008080 /* No color effect */ |
#define | OV9655_COLOR_EFFECT_ANTIQUE 0xCC000020F00000 /* Antique effect */ |
#define | OV9655_COLOR_EFFECT_BLUE 0xCC000000000060 /* Blue effect */ |
#define | OV9655_COLOR_EFFECT_GREEN 0xCC000000008000 /* Green effect */ |
#define | OV9655_COLOR_EFFECT_RED 0xCC600000000000 /* Red effect */ |
Functions | |
void | ov9655_Init (uint16_t DeviceAddr, uint32_t resolution) |
Initializes the OV9655 CAMERA component. More... | |
void | ov9655_Config (uint16_t DeviceAddr, uint32_t feature, uint32_t value, uint32_t BR_value) |
Configures the OV9655 camera feature. More... | |
uint16_t | ov9655_ReadID (uint16_t DeviceAddr) |
Read the OV9655 Camera identity. More... | |
void | CAMERA_IO_Init (void) |
void | CAMERA_IO_Write (uint8_t addr, uint8_t reg, uint8_t value) |
uint8_t | CAMERA_IO_Read (uint8_t addr, uint8_t reg) |
void | CAMERA_Delay (uint32_t delay) |
Variables | |
CAMERA_DrvTypeDef | ov9655_drv |
This file contains all the functions prototypes for the ov9655.c driver.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file ov9655.h.