mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24 lines
600 B
C
24 lines
600 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define EXAMPLE_RGB565_BITS_PER_PIXEL 16
|
|
#define EXAMPLE_MIPI_SCCB_FREQ (100000)
|
|
#define EXAMPLE_MIPI_SCCB_SCL_IO (8)
|
|
#define EXAMPLE_MIPI_SCCB_SDA_IO (7)
|
|
#define EXAMPLE_MIPI_IDI_CLOCK_RATE (50000000)
|
|
#define EXAMPLE_MIPI_CSI_LANE_BITRATE_MBPS 200 //line_rate = pclk * 4
|
|
|
|
#define EXAMPLE_OV5647_DEV_ADDR 0x36
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|