Line data Source code
1 1 : /*
2 : * Copyright (c) 2025 STMicroelectronics
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : /**
7 : * @file
8 : * @brief Raspberry Pi CSI camera connector pin constants
9 : * @ingroup raspberrypi-csi-connector
10 : */
11 :
12 : #ifndef INCLUDE_ZEPHYR_DT_BINDINGS_GPIO_RASPBERRYPI_CSI_CONNECTOR_H_
13 : #define INCLUDE_ZEPHYR_DT_BINDINGS_GPIO_RASPBERRYPI_CSI_CONNECTOR_H_
14 :
15 : /**
16 : * @defgroup raspberrypi-csi-connector Raspberry Pi CSI connector
17 : * @brief Constants for pins exposed on Raspberry Pi CSI camera connector
18 : * @ingroup devicetree-gpio-pin-headers
19 : * @{
20 : */
21 1 : #define CSI_IO0 1 /**< GPIO0 */
22 1 : #define CSI_IO1 2 /**< GPIO1 */
23 1 : #define CSI_I2C_SCL 3 /**< I2C clock pin */
24 1 : #define CSI_I2C_SDA 4 /**< I2C data pin */
25 : /** @} */
26 :
27 : #endif /* INCLUDE_ZEPHYR_DT_BINDINGS_GPIO_RASPBERRYPI_CSI_CONNECTOR_H_ */
|