mirror of
https://github.com/espressif/esp-idf
synced 2025-04-18 04:30:10 -04:00
20 lines
386 B
C
20 lines
386 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_IDI_CLOCK_RATE (50000000)
|
|
#define EXAMPLE_MIPI_CSI_LANE_BITRATE_MBPS 200 //line_rate = pclk * 4
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|