-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcmw_camera_conf.h
More file actions
46 lines (39 loc) · 1.24 KB
/
cmw_camera_conf.h
File metadata and controls
46 lines (39 loc) · 1.24 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
/**
******************************************************************************
* @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 ------------------------------------------------------------------*/
#include "stm32n6xx_hal.h"
#include "stm32n6xx_nucleo_bus.h"
/* ########################## 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 */