From 73e1f0069358bb8308701067a2becd1ee3fbc412 Mon Sep 17 00:00:00 2001 From: Sylvio Alves Date: Sat, 17 May 2025 05:33:58 -0300 Subject: [PATCH 1/2] driver: video: remove endpoint id in esp32 driver Remove endpoint ID entry in esp32 video driver needed after API changes. Signed-off-by: Sylvio Alves --- drivers/video/video_esp32_dvp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/video_esp32_dvp.c b/drivers/video/video_esp32_dvp.c index d0eebe40b13a2..63ae2bfbfba11 100644 --- a/drivers/video/video_esp32_dvp.c +++ b/drivers/video/video_esp32_dvp.c @@ -249,7 +249,7 @@ static int video_esp32_get_caps(const struct device *dev, struct video_caps *cap caps->min_line_count = caps->max_line_count = LINE_COUNT_HEIGHT; /* Forward the message to the source device */ - return video_get_caps(config->source_dev, ep, caps); + return video_get_caps(config->source_dev, caps); } static int video_esp32_get_fmt(const struct device *dev, struct video_format *fmt) From ac3cc763f397b35ab5c7e24cb47d1bae78739d8e Mon Sep 17 00:00:00 2001 From: Sylvio Alves Date: Sat, 17 May 2025 07:10:24 -0300 Subject: [PATCH 2/2] tests: build_all: video: add esp32s3_eye board Make sure esp32s3 video driver is built during CI tests. Signed-off-by: Sylvio Alves --- tests/drivers/build_all/video/testcase.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/drivers/build_all/video/testcase.yaml b/tests/drivers/build_all/video/testcase.yaml index 8b356bb4f75e8..519966a846a3b 100644 --- a/tests/drivers/build_all/video/testcase.yaml +++ b/tests/drivers/build_all/video/testcase.yaml @@ -28,3 +28,6 @@ tests: - arduino_nicla_vision/stm32h747xx/m7 extra_args: - platform:stm32h7b3i_dk/stm32h7b3xx:SHIELD=st_b_cams_omv_mb1683 + drivers.video.esp32_dvp.build: + platform_allow: + - esp32s3_eye/esp32s3/procpu