1# Copyright (c) 2024 tinyVision.ai Inc. 2# SPDX-License-Identifier: Apache-2.0 3 4config VIDEO_EMUL_IMAGER 5 bool "Software implementation of an imager" 6 depends on DT_HAS_ZEPHYR_VIDEO_EMUL_IMAGER_ENABLED 7 default y 8 help 9 Enable driver for the emulated Imager. 10 11config VIDEO_EMUL_IMAGER_FRAMEBUFFER_SIZE 12 int "Internal framebuffer size used for link emulation purpose" 13 default 4096 14 help 15 Configure the size of the internal framebuffer the emulated Imager 16 driver uses to simulate MIPI transfers. This is the first field of 17 dev->data, and the emulated video MIPI driver will `memcpy()` it 18 into the video buffer. 19