STM32L476G-Discovery board drivers V1.0.0

Dependents:   DiscoLogger DISCO_L476VG_GlassLCD DISCO_L476VG_MicrophoneRecorder DISCO_L476VG_UART ... more

Committer:
Jerome Coutant
Date:
Wed Jul 05 10:51:49 2017 +0200
Revision:
1:917af0ca86df
Child:
3:4c7d003a8259
Update with STM32Cube_FW_L4_V1.8.0

Who changed what in which revision?

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