Line data Source code
1 0 : /*
2 : * Copyright (c) 2025 STMicroelectronics.
3 : *
4 : * SPDX-License-Identifier: Apache-2.0
5 : */
6 :
7 : #ifndef ZEPHYR_INCLUDE_VIDEO_STM32_DCMIPP_H_
8 : #define ZEPHYR_INCLUDE_VIDEO_STM32_DCMIPP_H_
9 :
10 : /* Prototypes of ISP external handler weak functions */
11 0 : void stm32_dcmipp_isp_vsync_update(DCMIPP_HandleTypeDef *hdcmipp, uint32_t Pipe);
12 0 : int stm32_dcmipp_isp_init(DCMIPP_HandleTypeDef *hdcmipp, const struct device *source);
13 0 : int stm32_dcmipp_isp_start(void);
14 0 : int stm32_dcmipp_isp_stop(void);
15 :
16 : #endif /* ZEPHYR_INCLUDE_VIDEO_STM32_DCMIPP_H_ */
|