摄像头控制器驱动程序
简介
ESP32-P4 具有以下硬件,用于与外部摄像头传感器通信:
MIPI 摄像头串行接口 (MIPI CSI)
ISP的DVP端口 (ISP DVP)
LCD_CAM的DVP端口 (LCD_CAM DVP)
摄像头控制器驱动程序是为上述硬件外设而设计的。
功能概述
资源分配 - 涵盖如何通过恰当的配置来分配摄像头控制器实例,以及如何回收资源。
启用和禁用摄像头控制器驱动程序 - 涵盖如何启用和禁用摄像头控制器。
启动和停止摄像头控制器驱动程序 - 涵盖如何启动和停止摄像头控制器。
从摄像头传感器处接收信号 - 涵盖如何从传感器或其他设备接收摄像头信号。
注册事件回调函数 - 涵盖如何将用户特定代码挂接到摄像头控制器驱动程序事件回调函数。
线程安全 - 列出了驱动程序中线程安全的 API。
Kconfig 选项 - 列出了支持的 Kconfig 选项,这些选项可以对驱动程序产生不同的影响。
IRAM 安全 - 描述了当 cache 被禁用时,如何使 CSI 中断和控制功能更好地工作。
资源分配
安装摄像头控制器驱动程序
摄像头控制器驱动程序可以通过以下方式之一安装:
esp_cam_new_lcd_cam_ctlr()
摄像头控制器驱动程序可以通过 CSI 外设实现,需要应用 esp_cam_ctlr_csi_config_t 指定的配置。
如果指定了 esp_cam_ctlr_csi_config_t 中的配置,就可以调用 esp_cam_new_csi_ctlr() 来分配和初始化 CSI 摄像头控制器句柄。如果函数运行正确,将返回一个 CSI 摄像头控制器句柄。请参考以下代码。
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_types.h"
#include "esp_cam_ctlr_csi.h"
void app_main(void)
{
esp_cam_ctlr_csi_config_t csi_config = {
.ctlr_id = 0,
.h_res = MIPI_CSI_DISP_HSIZE,
.v_res = MIPI_CSI_DISP_VSIZE_640P,
.lane_bit_rate_mbps = MIPI_CSI_LANE_BITRATE_MBPS,
.input_data_color_type = CAM_CTLR_COLOR_RAW8,
.output_data_color_type = CAM_CTLR_COLOR_RGB565,
.data_lane_num = 2,
.byte_swap_en = false,
.queue_items = 1,
};
esp_cam_ctlr_handle_t handle = NULL;
ESP_ERROR_CHECK(esp_cam_new_csi_ctlr(&csi_config, &handle));
}
ESP32-P4 中的 CSI 控制器需要稳定的 2.5 V 电源供电,请查阅原理图,确保在使用 MIPI CSI 驱动之前,已将其供电管脚连接至 2.5 V 电源。
在 ESP32-P4 中,CSI 控制器可以使用内部的可调 LDO 供电。请将 LDO 通道的输出管脚连接至 CSI 控制器的供电管脚。然后在初始化 CSI 驱动之前,使用 低压差线性稳压器 (LDO) 中提供的 API 配置 LDO 输出 2.5 V 电压。
摄像头控制器驱动程序可以通过 ISP 外设实现,需要应用 esp_cam_ctlr_isp_dvp_cfg_t 指定的配置。
如果指定了 esp_cam_ctlr_isp_dvp_cfg_t 中的配置,就可以调用 esp_cam_new_isp_dvp_ctlr() 来分配和初始化 ISP DVP 摄像头控制器句柄。如果函数运行正确,将返回一个 ISP DVP 摄像头控制器句柄。请参考以下代码。
在调用 esp_cam_new_isp_dvp_ctlr() 之前,还应调用 esp_isp_new_processor() 来创建 ISP 句柄。
#include "esp_err.h"
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_isp_dvp.h"
#include "driver/isp.h"
#define MIPI_CSI_DISP_HSIZE 800 // example value, replace with actual resolution
#define MIPI_CSI_DISP_VSIZE 600 // example value, replace with actual resolution
void app_main(void)
{
isp_proc_handle_t isp_proc = NULL;
esp_isp_processor_cfg_t isp_config = {
.clk_hz = 120 * 1000 * 1000,
.input_data_source = ISP_INPUT_DATA_SOURCE_DVP,
.input_data_color_type = ISP_COLOR_RAW8,
.output_data_color_type = ISP_COLOR_RGB565,
.has_line_start_packet = false,
.has_line_end_packet = false,
.h_res = MIPI_CSI_DISP_HSIZE,
.v_res = MIPI_CSI_DISP_VSIZE,
};
ESP_ERROR_CHECK(esp_isp_new_processor(&isp_config, &isp_proc));
esp_cam_ctlr_handle_t cam_handle = NULL;
esp_cam_ctlr_isp_dvp_cfg_t dvp_ctlr_config = {
.data_width = 8,
.data_io = {53, 54, 52, 0, 1, 45, 46, 47, -1, -1, -1, -1, -1, -1, -1, -1},
.pclk_io = 21,
.hsync_io = 5,
.vsync_io = 23,
.de_io = 22,
.io_flags.vsync_invert = 1,
.queue_items = 10,
};
ESP_ERROR_CHECK(esp_cam_new_isp_dvp_ctlr(isp_proc, &dvp_ctlr_config, &cam_handle));
}
摄像头控制器驱动程序可以通过 LCD_CAM外设实现,需要应用 esp_cam_ctlr_dvp_config_t 和 esp_cam_ctlr_dvp_pin_config_t 指定的配置。
esp_cam_ctlr_dvp_config_t::exexternal_xtal:使用外部生成的 xclk,或者使用驱动内部内部生成的 xclk。
如果指定了 esp_cam_ctlr_dvp_config_t 中的配置,就可以调用 esp_cam_new_dvp_ctlr() 来分配和初始化 DVP 摄像头控制器句柄。如果函数运行正确,将返回一个 DVP 摄像头控制器句柄。请参考以下代码。
在调用 esp_cam_new_dvp_ctlr() 之后,需要分配符合对齐约束的摄像头缓冲区,或调用 esp_cam_ctlr_alloc_buffer() 来自动分配。
可以调用 esp_cam_ctlr_format_conversion() 来配置格式转换。驱动程序支持以下转换类型:
YUV 到 RGB 转换
RGB 到 YUV 转换
YUV 到 YUV 转换
色彩空间范围支持: * 全色彩空间:RGB 和 YUV 的取值范围为 0-255 * 有限色彩空间:RGB 取值范围为 16-240,YUV Y 分量取值范围为 16-240,U-V 分量取值范围为 16-235
#include "esp_err.h"
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_types.h"
#include "esp_cam_ctlr_isp_dvp.h"
void app_main(void)
{
esp_cam_ctlr_handle_t cam_handle = NULL;
esp_cam_ctlr_dvp_pin_config_t pin_cfg = {
.data_width = EXAMPLE_DVP_CAM_DATA_WIDTH,
.data_io = {
EXAMPLE_DVP_CAM_D0_IO,
EXAMPLE_DVP_CAM_D1_IO,
EXAMPLE_DVP_CAM_D2_IO,
EXAMPLE_DVP_CAM_D3_IO,
EXAMPLE_DVP_CAM_D4_IO,
EXAMPLE_DVP_CAM_D5_IO,
EXAMPLE_DVP_CAM_D6_IO,
EXAMPLE_DVP_CAM_D7_IO,
},
.vsync_io = EXAMPLE_DVP_CAM_VSYNC_IO,
.de_io = EXAMPLE_DVP_CAM_DE_IO,
.pclk_io = EXAMPLE_DVP_CAM_PCLK_IO,
.xclk_io = EXAMPLE_DVP_CAM_XCLK_IO, // Set XCLK pin to generate XCLK signal
};
esp_cam_ctlr_dvp_config_t dvp_config = {
.ctlr_id = 0,
.clk_src = CAM_CLK_SRC_DEFAULT,
.h_res = CONFIG_EXAMPLE_CAM_HRES,
.v_res = CONFIG_EXAMPLE_CAM_VRES,
.input_data_color_type = CAM_CTLR_COLOR_RGB565,
.output_data_color_type = CAM_CTLR_COLOR_RGB565,
.dma_burst_size = 128,
.pin = &pin_cfg,
.bk_buffer_dis = 1,
.xclk_freq = EXAMPLE_DVP_CAM_XCLK_FREQ_HZ,
};
ESP_ERROR_CHECK(esp_cam_new_dvp_ctlr(&dvp_config, &cam_handle));
}
卸载摄像头控制器驱动程序
如果不再需要先前安装的摄像头控制器驱动程序,建议通过调用 esp_cam_ctlr_del() 来回收资源,从而释放底层硬件。
启用和禁用摄像头控制器驱动程序
在开始摄像头控制器操作之前,首先要调用 esp_cam_ctlr_enable() 以启用摄像头控制器驱动程序。此函数将驱动程序状态从 init 切换到 enable。
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_types.h"
#include "esp_err.h"
void app_main(void)
{
esp_cam_ctlr_handle_t handle;
ESP_ERROR_CHECK(esp_cam_ctlr_enable(handle));
}
调用 esp_cam_ctlr_disable() 则会执行与上述过程相反的操作,即将驱动程序切回到 init 状态。
#include "esp_err.h"
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_types.h"
void app_main(void)
{
esp_cam_ctlr_handle_t handle;
ESP_ERROR_CHECK(esp_cam_ctlr_disable(handle));
}
启动和停止摄像头控制器驱动程序
从摄像头传感器接收信号之前,首先要调用 esp_cam_ctlr_start() 以启动摄像头控制器驱动程序。此函数将驱动程序状态从 enable 切换到 start。
#include "esp_err.h"
#include "esp_log.h"
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_types.h"
void app_main(void)
{
esp_cam_ctlr_handle_t handle = NULL;
ESP_ERROR_CHECK(esp_cam_ctlr_start(handle));
ESP_LOGI("CAM", "Camera controller started successfully");
}
调用 esp_cam_ctlr_stop() 则会执行与上述过程相反的操作,即将驱动程序切回到 enable 状态。
#include "esp_err.h"
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_types.h"
void app_main(void)
{
esp_cam_ctlr_handle_t handle = NULL;
ESP_ERROR_CHECK(esp_cam_ctlr_stop(handle));
}
从摄像头传感器处接收信号
调用 esp_cam_ctlr_receive(),可以接收来自摄像头传感器或其他设备的信号。
#include "esp_err.h"
#include "esp_cam_ctlr.h"
#include "esp_cam_ctlr_types.h"
ESP_ERROR_CHECK(esp_cam_ctlr_receive(handle, &my_trans, ESP_CAM_CTLR_MAX_DELAY));
注册事件回调函数
摄像头控制器驱动程序开始接收信号时,会动态生成特定事件。如果在事件发生时需要调用一些函数,请通过调用 esp_cam_ctlr_register_event_callbacks() 将这些函数挂接到中断服务程序。所有支持的事件回调函数参见 esp_cam_ctlr_evt_cbs_t:
esp_cam_ctlr_evt_cbs_t::on_get_new_trans可设置回调函数,当摄像头控制器驱动程序完成传输并尝试获取新的事务描述符时,该回调函数会被调用。在s_ctlr_csi_start()中也会调用此回调函数。如果此回调函数未能获取新的事务描述符,但设置了bk_buffer_dis标志,则摄像头控制器驱动程序将使用内部备份 buffer。esp_cam_ctlr_evt_cbs_t::on_trans_finished可设置回调函数,当摄像头控制器驱动程序完成传输时,该回调函数会被调用。此函数在 ISR 上下文中被调用,因此必须确保该函数不会尝试阻塞(例如,确保只从该函数中调用带有ISR后缀的 FreeRTOS API)。
线程安全
以下工厂函数由驱动程序保证线程安全。使用时,可以直接从不同的 RTOS 任务中调用此类函数,无需额外锁保护。
Kconfig 选项
当 cache 被禁用时,以下 Kconfig 选项会影响中断处理程序的行为:
IRAM 安全
默认情况下,当 cache 因写入或擦除 flash 等原因而被禁用时,CSI 中断将被推迟。这些中断会在 cache 重新启用后再被处理。
以下 Kconfig 选项支持:
即使 cache 被禁用也能启用中断服务
将 ISR 使用的所有函数放入 IRAM
将驱动程序对象放入 DRAM(以防意外映射到 PSRAM)
启用上述 Kconfig 选项,保证 cache 被禁用时中断可以正常运行,但这会增加 IRAM 使用量。因此,当 cache 被禁用时,用户回调函数需要注意(回调函数的)代码和数据应该是 IRAM 安全或 DRAM 安全的。
应用示例
peripherals/camera/mipi_isp_dsi 演示了如何使用
esp_driver_cam组件从 MIPI CSI 摄像头传感器捕获信号,传入 ISP 模块,并通过 DSI 接口将其显示在 LCD 屏幕上。peripherals/camera/dvp_isp_dsi 演示了如何使用
esp_driver_cam组件从 DVP 摄像头传感器捕获信号,传入 ISP 模块,并通过 DSI 接口将其显示在 LCD 屏幕上。
API 参考
Header File
This header file can be included with:
#include "esp_cam_ctlr.h"
This header file is a part of the API provided by the
esp_driver_camcomponent. To declare that your component depends onesp_driver_cam, add the following to your CMakeLists.txt:REQUIRES esp_driver_cam
or
PRIV_REQUIRES esp_driver_cam
Functions
-
esp_err_t esp_cam_ctlr_enable(esp_cam_ctlr_handle_t handle)
Enable the ESP CAM controller.
- 参数:
handle -- [in] ESP CAM controller handle.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid state.
-
esp_err_t esp_cam_ctlr_start(esp_cam_ctlr_handle_t handle)
Start the ESP CAM controller.
- 参数:
handle -- [in] ESP CAM controller handle.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid state.
-
esp_err_t esp_cam_ctlr_stop(esp_cam_ctlr_handle_t handle)
Stop the ESP CAM controller.
- 参数:
handle -- [in] ESP CAM controller handle.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid state.
-
esp_err_t esp_cam_ctlr_disable(esp_cam_ctlr_handle_t handle)
Disable the ESP CAM controller.
- 参数:
handle -- [in] ESP CAM controller handle.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid state.
-
esp_err_t esp_cam_ctlr_receive(esp_cam_ctlr_handle_t handle, esp_cam_ctlr_trans_t *trans, uint32_t timeout_ms)
Receive data for the given transaction.
- 参数:
handle -- [in] ESP CAM controller handle.
trans -- [in] ESP CAM controller transaction type.
timeout_ms -- [in] Timeout. Measurement unit: milliseconds.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid state.
-
esp_err_t esp_cam_ctlr_del(esp_cam_ctlr_handle_t handle)
Delete the ESP CAM controller handle.
- 参数:
handle -- [in] ESP CAM controller handle.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid state.
-
esp_err_t esp_cam_ctlr_register_event_callbacks(esp_cam_ctlr_handle_t handle, const esp_cam_ctlr_evt_cbs_t *cbs, void *user_data)
Register ESP CAM controller event callbacks.
- 参数:
handle -- [in] ESP CAM controller handle.
cbs -- [in] ESP CAM controller event callbacks.
user_data -- [in] User data.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid state.
-
esp_err_t esp_cam_ctlr_get_frame_buffer(esp_cam_ctlr_handle_t handle, uint32_t fb_num, const void **fb0, ...)
Get the ESP CAM controller internal allocated backup buffer(s) address.
备注
Data in the internal buffer is generally ready when the
on_trans_finishedevent occurs.- 参数:
handle -- [in] ESP CAM controller handle.
fb_num -- [in] Number of frame buffers to get. This value must match the number of subsequent fbN parameters.
fb0 -- [out] Address of the first frame buffer.
... -- [out] List of other frame buffers, if any.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_INVALID_STATE: Invalid driver state.
-
esp_err_t esp_cam_ctlr_get_frame_buffer_len(esp_cam_ctlr_handle_t handle, size_t *ret_fb_len)
Get the length of the ESP CAM controller internal backup buffer.
- 参数:
handle -- [in] ESP CAM controller handle.
ret_fb_len -- [out] Optional. The size of each frame buffer. Measurement unit: bytes.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: NULL pointer.
ESP_ERR_INVALID_STATE: Invalid driver state.
-
void *esp_cam_ctlr_alloc_buffer(esp_cam_ctlr_handle_t handle, size_t size, uint32_t buf_caps)
Allocate a camera buffer for the ESP CAM controller.
备注
This function must be called after
esp_cam_new_*_ctlr.- 参数:
handle -- [in] ESP CAM controller handle.
size -- [in] Buffer size. Measurement unit: bytes.
buf_caps -- [in] Buffer allocation capabilities:
MALLOC_CAP_SPIRAM||MALLOC_CAP_DMA: Memory in external SPI RAM.MALLOC_CAP_INTERNAL||MALLOC_CAP_DMA: Memory in internal SRAM.
- 返回:
Buffer pointer on success.
NULL on failure.
-
esp_err_t esp_cam_ctlr_format_conversion(esp_cam_ctlr_handle_t handle, const cam_ctlr_format_conv_config_t *conv_cfg)
Configure format conversion.
- 参数:
handle -- [in] ESP CAM controller handle.
conv_cfg -- [in] Color conversion configuration, containing source and destination formats.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_NOT_SUPPORTED: Format conversion not supported by this controller.
Header File
This header file can be included with:
#include "esp_cam_ctlr_types.h"
This header file is a part of the API provided by the
esp_driver_camcomponent. To declare that your component depends onesp_driver_cam, add the following to your CMakeLists.txt:REQUIRES esp_driver_cam
or
PRIV_REQUIRES esp_driver_cam
Structures
-
struct esp_cam_ctlr_trans_t
Transaction type for the ESP CAM controller.
-
struct esp_cam_ctlr_evt_cbs_t
Event callbacks for the ESP CAM controller.
Public Members
-
bool (*on_get_new_trans)(esp_cam_ctlr_handle_t handle, esp_cam_ctlr_trans_t *trans, void *user_data)
Callback for receiving a new transaction.
- Param handle:
[in] ESP CAM controller handle.
- Param trans:
[in] New transaction.
- Param user_data:
[in] User-registered data.
- Return:
Whether a high-priority task is woken up by this function.
-
bool (*on_trans_finished)(esp_cam_ctlr_handle_t handle, esp_cam_ctlr_trans_t *trans, void *user_data)
Callback for a finished transaction.
- Param handle:
[in] ESP CAM controller handle.
- Param trans:
[out] Finished transaction.
- Param user_data:
[in] User-registered data.
- Return:
Whether a high-priority task is woken up by this function.
-
bool (*on_get_new_trans)(esp_cam_ctlr_handle_t handle, esp_cam_ctlr_trans_t *trans, void *user_data)
Macros
-
ESP_CAM_CTLR_MAX_DELAY
Maximum timeout value in ticks for the ESP CAM controller.
Type Definitions
-
typedef struct esp_cam_ctlr_t *esp_cam_ctlr_handle_t
Handle for the ESP CAM controller.
Header File
This header file can be included with:
#include "esp_cam_ctlr_csi.h"
This header file is a part of the API provided by the
esp_driver_camcomponent. To declare that your component depends onesp_driver_cam, add the following to your CMakeLists.txt:REQUIRES esp_driver_cam
or
PRIV_REQUIRES esp_driver_cam
Functions
-
esp_err_t esp_cam_new_csi_ctlr(const esp_cam_ctlr_csi_config_t *config, esp_cam_ctlr_handle_t *ret_handle)
Create a new ESP CAM CSI controller.
- 参数:
config -- [in] CSI controller configurations.
ret_handle -- [out] Returned ESP CAM controller handle.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_NO_MEM: Out of memory.
ESP_ERR_NOT_SUPPORTED: Currently unsupported modes or types.
ESP_ERR_NOT_FOUND: CSI is already registered.
Structures
-
struct esp_cam_ctlr_csi_data_type_t
CSI customized data type configuration.
备注
By default (by setting this structure to 0), embedded data and standard data type will be supported. Under most conditions, you don't need to set this and can keep these to 0. Set this if you want to use customized data type.
Public Members
-
uint32_t bits_per_pixel
Bits per pixel, by default it's 0, embedded data and standard data type will be supported
-
uint32_t data_type_min
Data type, by default it's 0, embedded data and standard data type will be supported
-
uint32_t data_type_max
Data type, by default it's 0, embedded data and standard data type will be supported
-
uint32_t bits_per_pixel
-
struct esp_cam_ctlr_csi_config_t
ESP CAM CSI controller configurations.
Public Members
-
int ctlr_id
CSI controller ID.
-
mipi_csi_phy_clock_source_t clk_src
CSI PHY clock source.
-
uint32_t h_res
Input horizontal resolution. Measurement unit: pixels per line.
-
uint32_t v_res
Input vertical resolution. Measurement unit: lines per frame.
-
uint8_t data_lane_num
Number of data lanes.
-
int lane_bit_rate_mbps
Lane bit rate. Measurement unit: Mbps.
-
cam_ctlr_color_t input_data_color_type
Input color type.
-
cam_ctlr_color_t output_data_color_type
Output color type.
-
esp_cam_ctlr_csi_data_type_t data_type
Data type configuration.
-
int queue_items
Number of queue items.
-
uint32_t input_8bit_swap_en
Set to 1 to enable input 8bit bit swap. [31:24] [23:16] [15:8] [7:0] -> [7:0] [15:8] [23:16] [31:24]
-
uint32_t input_16bit_swap_en
Set to 1 to enable input 16bit bit swap. [31:16] [15:0] -> [15:0] [31:16]
-
uint32_t byte_swap_en
Set to 1 to enable output byte swap.
-
uint32_t bk_buffer_dis
Set to 1 to disable backup buffer.
- struct esp_cam_ctlr_csi_config_t
Boolean flags.
-
int ctlr_id
Header File
components/esp_driver_cam/isp_dvp/include/esp_cam_ctlr_isp_dvp.h
This header file can be included with:
#include "esp_cam_ctlr_isp_dvp.h"
This header file is a part of the API provided by the
esp_driver_camcomponent. To declare that your component depends onesp_driver_cam, add the following to your CMakeLists.txt:REQUIRES esp_driver_cam
or
PRIV_REQUIRES esp_driver_cam
Functions
-
esp_err_t esp_cam_new_isp_dvp_ctlr(isp_proc_handle_t isp_proc, const esp_cam_ctlr_isp_dvp_cfg_t *ctlr_config, esp_cam_ctlr_handle_t *ret_handle)
Create a new ESP CAM ISP DVP controller.
- 参数:
isp_proc -- [in] Processor handle.
ctlr_config -- [in] ISP DVP controller configurations.
ret_handle -- [out] Returned ESP CAM controller handle.
- 返回:
ESP_OK: Success.
ESP_ERR_INVALID_ARG: Invalid argument.
ESP_ERR_NO_MEM: Out of memory.
ESP_ERR_NOT_SUPPORTED: Currently not supported modes or types.
ESP_ERR_NOT_FOUND: ISP DVP is already registered.
Structures
-
struct esp_cam_ctlr_isp_dvp_cfg_t
ESP CAM ISP DVP controller configurations.
Public Members
-
cam_ctlr_data_width_t data_width
Number of data lines.
-
int data_io[ESP_CAM_CTLR_ISP_DVP_DATA_SIG_NUM_MAX]
ISP DVP data-in IO numbers.
-
int pclk_io
ISP DVP pclk IO number.
-
int hsync_io
ISP DVP hsync IO number.
-
int vsync_io
ISP DVP vsync IO number.
-
int de_io
ISP DVP de IO number.
-
uint32_t pclk_invert
Set to 1 to invert the pclk signal.
-
uint32_t hsync_invert
Set to 1 to invert the hsync signal (i.e., active low).
-
uint32_t vsync_invert
Set to 1 to invert the vsync signal (i.e., active high).
-
uint32_t de_invert
Set to 1 to invert the de signal (i.e., active low).
-
struct esp_cam_ctlr_isp_dvp_cfg_t io_flags
ISP DVP IO flags.
-
int queue_items
Queue items.
-
uint32_t byte_swap_en
Set to 1 to enable byte swap.
-
uint32_t bk_buffer_dis
Set to 1 to disable backup buffer.
-
cam_ctlr_data_width_t data_width
Macros
-
ESP_CAM_CTLR_ISP_DVP_DATA_SIG_NUM_MAX