From 1000738fc9ceb30d6f2eb19f6c159e2a39c4daff Mon Sep 17 00:00:00 2001 From: Armin Kessler Date: Mon, 16 Sep 2024 18:04:34 +0200 Subject: [PATCH] drivers: video: Add VIDEO_BUF_STARTED to poll signals Add VIDEO_BUF_STARTED event to video_signal_result. VIDEO_BUF_STARTED should be triggered once processing of the buffer has started (e.g. start_of_transmission/reception) Signed-off-by: Armin Kessler --- include/zephyr/drivers/video.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/zephyr/drivers/video.h b/include/zephyr/drivers/video.h index 42f270084a5e29..5c8f9ad9dcb5a8 100644 --- a/include/zephyr/drivers/video.h +++ b/include/zephyr/drivers/video.h @@ -140,6 +140,7 @@ enum video_endpoint_id { * Identify video event. */ enum video_signal_result { + VIDEO_BUF_STARTED, VIDEO_BUF_DONE, VIDEO_BUF_ABORTED, VIDEO_BUF_ERROR,