-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcmw_camera_conf.h
More file actions
54 lines (47 loc) · 1.42 KB
/
cmw_camera_conf.h
File metadata and controls
54 lines (47 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
******************************************************************************
* @file cmw_camera_conf.h
* @author GPM Application Team
*
******************************************************************************
* @attention
*
* Copyright (c) 2024 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef CMW_CAMERA_CONF_H
#define CMW_CAMERA_CONF_H
#ifdef __cplusplus
extern "C" {
#endif
/* Includes ------------------------------------------------------------------*/
#if defined (STM32N657xx)
#include "stm32n6xx_hal.h"
#ifdef USE_STM32N6570_NUCLEO_REV_B01
#include "stm32n6xx_nucleo_bus.h"
#else
#include "stm32n6570_discovery_bus.h"
#endif
#else
#error Add header files for your specific board
#endif
/* ########################## Module Selection ############################## */
/**
* @brief This is the list of modules to be used in the HAL driver
*/
#define USE_IMX335_SENSOR
#define USE_VD66GY_SENSOR
#define USE_VD55G1_SENSOR
#define USE_VD1943_SENSOR
#define USE_OV5640_SENSOR
#ifdef __cplusplus
}
#endif
#endif /* CMW_CAMERA_CONF_H */