STM32746G-Discovery board drivers V1.0.0

Dependents:   DISCO-F746NG_LCDTS_CC3000_NTP DISCO-F746NG_ROPE_WIFI F746_SpectralAnalysis_NoPhoto ecte433 ... more

Committer:
jeromecoutant
Date:
Wed Nov 27 08:29:42 2019 +0000
Revision:
13:85dbcff443aa
Parent:
7:fe313c53cdb5
Fix OV9655 Camera Driver

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bcostm 7:fe313c53cdb5 1 /**
bcostm 7:fe313c53cdb5 2 ******************************************************************************
bcostm 7:fe313c53cdb5 3 * @file camera.h
bcostm 7:fe313c53cdb5 4 * @author MCD Application Team
bcostm 7:fe313c53cdb5 5 * @version V4.0.1
bcostm 7:fe313c53cdb5 6 * @date 21-July-2015
bcostm 7:fe313c53cdb5 7 * @brief This header file contains the common defines and functions prototypes
bcostm 7:fe313c53cdb5 8 * for the camera driver.
bcostm 7:fe313c53cdb5 9 ******************************************************************************
bcostm 7:fe313c53cdb5 10 * @attention
bcostm 7:fe313c53cdb5 11 *
bcostm 7:fe313c53cdb5 12 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
bcostm 7:fe313c53cdb5 13 *
bcostm 7:fe313c53cdb5 14 * Redistribution and use in source and binary forms, with or without modification,
bcostm 7:fe313c53cdb5 15 * are permitted provided that the following conditions are met:
bcostm 7:fe313c53cdb5 16 * 1. Redistributions of source code must retain the above copyright notice,
bcostm 7:fe313c53cdb5 17 * this list of conditions and the following disclaimer.
bcostm 7:fe313c53cdb5 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
bcostm 7:fe313c53cdb5 19 * this list of conditions and the following disclaimer in the documentation
bcostm 7:fe313c53cdb5 20 * and/or other materials provided with the distribution.
bcostm 7:fe313c53cdb5 21 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bcostm 7:fe313c53cdb5 22 * may be used to endorse or promote products derived from this software
bcostm 7:fe313c53cdb5 23 * without specific prior written permission.
bcostm 7:fe313c53cdb5 24 *
bcostm 7:fe313c53cdb5 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bcostm 7:fe313c53cdb5 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bcostm 7:fe313c53cdb5 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bcostm 7:fe313c53cdb5 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bcostm 7:fe313c53cdb5 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bcostm 7:fe313c53cdb5 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bcostm 7:fe313c53cdb5 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bcostm 7:fe313c53cdb5 32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bcostm 7:fe313c53cdb5 33 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bcostm 7:fe313c53cdb5 34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bcostm 7:fe313c53cdb5 35 *
bcostm 7:fe313c53cdb5 36 ******************************************************************************
bcostm 7:fe313c53cdb5 37 */
bcostm 7:fe313c53cdb5 38
bcostm 7:fe313c53cdb5 39 /* Define to prevent recursive inclusion -------------------------------------*/
bcostm 7:fe313c53cdb5 40 #ifndef __CAMERA_H
bcostm 7:fe313c53cdb5 41 #define __CAMERA_H
bcostm 7:fe313c53cdb5 42
bcostm 7:fe313c53cdb5 43 #ifdef __cplusplus
bcostm 7:fe313c53cdb5 44 extern "C" {
bcostm 7:fe313c53cdb5 45 #endif
bcostm 7:fe313c53cdb5 46
bcostm 7:fe313c53cdb5 47 /* Includes ------------------------------------------------------------------*/
bcostm 7:fe313c53cdb5 48 #include <stdint.h>
bcostm 7:fe313c53cdb5 49
bcostm 7:fe313c53cdb5 50 /** @addtogroup BSP
bcostm 7:fe313c53cdb5 51 * @{
bcostm 7:fe313c53cdb5 52 */
bcostm 7:fe313c53cdb5 53
bcostm 7:fe313c53cdb5 54 /** @addtogroup Components
bcostm 7:fe313c53cdb5 55 * @{
bcostm 7:fe313c53cdb5 56 */
bcostm 7:fe313c53cdb5 57
bcostm 7:fe313c53cdb5 58 /** @addtogroup CAMERA
bcostm 7:fe313c53cdb5 59 * @{
bcostm 7:fe313c53cdb5 60 */
bcostm 7:fe313c53cdb5 61
bcostm 7:fe313c53cdb5 62
bcostm 7:fe313c53cdb5 63 /** @defgroup CAMERA_Exported_Types
bcostm 7:fe313c53cdb5 64 * @{
bcostm 7:fe313c53cdb5 65 */
bcostm 7:fe313c53cdb5 66
bcostm 7:fe313c53cdb5 67 /** @defgroup CAMERA_Driver_structure Camera Driver structure
bcostm 7:fe313c53cdb5 68 * @{
bcostm 7:fe313c53cdb5 69 */
bcostm 7:fe313c53cdb5 70 typedef struct
bcostm 7:fe313c53cdb5 71 {
bcostm 7:fe313c53cdb5 72 void (*Init)(uint16_t, uint32_t);
bcostm 7:fe313c53cdb5 73 uint16_t (*ReadID)(uint16_t);
bcostm 7:fe313c53cdb5 74 void (*Config)(uint16_t, uint32_t, uint32_t, uint32_t);
bcostm 7:fe313c53cdb5 75 }CAMERA_DrvTypeDef;
bcostm 7:fe313c53cdb5 76 /**
bcostm 7:fe313c53cdb5 77 * @}
bcostm 7:fe313c53cdb5 78 */
bcostm 7:fe313c53cdb5 79
bcostm 7:fe313c53cdb5 80 /**
bcostm 7:fe313c53cdb5 81 * @}
bcostm 7:fe313c53cdb5 82 */
bcostm 7:fe313c53cdb5 83
bcostm 7:fe313c53cdb5 84 /** @defgroup CAMERA_Exported_Constants
bcostm 7:fe313c53cdb5 85 * @{
bcostm 7:fe313c53cdb5 86 */
bcostm 7:fe313c53cdb5 87 #define CAMERA_R160x120 0x00 /* QQVGA Resolution */
bcostm 7:fe313c53cdb5 88 #define CAMERA_R320x240 0x01 /* QVGA Resolution */
bcostm 7:fe313c53cdb5 89 #define CAMERA_R480x272 0x02 /* 480x272 Resolution */
bcostm 7:fe313c53cdb5 90 #define CAMERA_R640x480 0x03 /* VGA Resolution */
bcostm 7:fe313c53cdb5 91
bcostm 7:fe313c53cdb5 92 #define CAMERA_CONTRAST_BRIGHTNESS 0x00 /* Camera contrast brightness features */
bcostm 7:fe313c53cdb5 93 #define CAMERA_BLACK_WHITE 0x01 /* Camera black white feature */
bcostm 7:fe313c53cdb5 94 #define CAMERA_COLOR_EFFECT 0x03 /* Camera color effect feature */
bcostm 7:fe313c53cdb5 95
bcostm 7:fe313c53cdb5 96 #define CAMERA_BRIGHTNESS_LEVEL0 0x00 /* Brightness level -2 */
bcostm 7:fe313c53cdb5 97 #define CAMERA_BRIGHTNESS_LEVEL1 0x01 /* Brightness level -1 */
bcostm 7:fe313c53cdb5 98 #define CAMERA_BRIGHTNESS_LEVEL2 0x02 /* Brightness level 0 */
bcostm 7:fe313c53cdb5 99 #define CAMERA_BRIGHTNESS_LEVEL3 0x03 /* Brightness level +1 */
bcostm 7:fe313c53cdb5 100 #define CAMERA_BRIGHTNESS_LEVEL4 0x04 /* Brightness level +2 */
bcostm 7:fe313c53cdb5 101
bcostm 7:fe313c53cdb5 102 #define CAMERA_CONTRAST_LEVEL0 0x05 /* Contrast level -2 */
bcostm 7:fe313c53cdb5 103 #define CAMERA_CONTRAST_LEVEL1 0x06 /* Contrast level -1 */
bcostm 7:fe313c53cdb5 104 #define CAMERA_CONTRAST_LEVEL2 0x07 /* Contrast level 0 */
bcostm 7:fe313c53cdb5 105 #define CAMERA_CONTRAST_LEVEL3 0x08 /* Contrast level +1 */
bcostm 7:fe313c53cdb5 106 #define CAMERA_CONTRAST_LEVEL4 0x09 /* Contrast level +2 */
bcostm 7:fe313c53cdb5 107
bcostm 7:fe313c53cdb5 108 #define CAMERA_BLACK_WHITE_BW 0x00 /* Black and white effect */
bcostm 7:fe313c53cdb5 109 #define CAMERA_BLACK_WHITE_NEGATIVE 0x01 /* Negative effect */
bcostm 7:fe313c53cdb5 110 #define CAMERA_BLACK_WHITE_BW_NEGATIVE 0x02 /* BW and Negative effect */
bcostm 7:fe313c53cdb5 111 #define CAMERA_BLACK_WHITE_NORMAL 0x03 /* Normal effect */
bcostm 7:fe313c53cdb5 112
bcostm 7:fe313c53cdb5 113 #define CAMERA_COLOR_EFFECT_NONE 0x00 /* No effects */
bcostm 7:fe313c53cdb5 114 #define CAMERA_COLOR_EFFECT_BLUE 0x01 /* Blue effect */
bcostm 7:fe313c53cdb5 115 #define CAMERA_COLOR_EFFECT_GREEN 0x02 /* Green effect */
bcostm 7:fe313c53cdb5 116 #define CAMERA_COLOR_EFFECT_RED 0x03 /* Red effect */
bcostm 7:fe313c53cdb5 117 #define CAMERA_COLOR_EFFECT_ANTIQUE 0x04 /* Antique effect */
bcostm 7:fe313c53cdb5 118
bcostm 7:fe313c53cdb5 119 /**
bcostm 7:fe313c53cdb5 120 * @}
bcostm 7:fe313c53cdb5 121 */
bcostm 7:fe313c53cdb5 122
bcostm 7:fe313c53cdb5 123 /**
bcostm 7:fe313c53cdb5 124 * @}
bcostm 7:fe313c53cdb5 125 */
bcostm 7:fe313c53cdb5 126
bcostm 7:fe313c53cdb5 127 /**
bcostm 7:fe313c53cdb5 128 * @}
bcostm 7:fe313c53cdb5 129 */
bcostm 7:fe313c53cdb5 130
bcostm 7:fe313c53cdb5 131 /**
bcostm 7:fe313c53cdb5 132 * @}
bcostm 7:fe313c53cdb5 133 */
bcostm 7:fe313c53cdb5 134
bcostm 7:fe313c53cdb5 135 #ifdef __cplusplus
bcostm 7:fe313c53cdb5 136 }
bcostm 7:fe313c53cdb5 137 #endif
bcostm 7:fe313c53cdb5 138
bcostm 7:fe313c53cdb5 139 #endif /* __CAMERA_H */
bcostm 7:fe313c53cdb5 140
bcostm 7:fe313c53cdb5 141 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/