zephyr/tests/drivers/video/api/prj.conf
Josuah Demangeon a86da87a52 drivers: video: emul: store only one line of data
Only store a single line of the full frame. This allows to support a
large enough frame size to remove the Kconfig option, which simplifies
the implementation (fewer checks needed).

Signed-off-by: Josuah Demangeon <me@josuah.net>
2025-03-20 07:20:55 +01:00

12 lines
293 B
Plaintext

CONFIG_ZTEST=y
CONFIG_VIDEO=y
# Just enough for a single frame in RGB565 format: 320 * 420 * 2 + some margin
CONFIG_VIDEO_BUFFER_POOL_SZ_MAX=300000
CONFIG_VIDEO_BUFFER_POOL_NUM_MAX=1
# Required to support larger buffers on native_sim
CONFIG_SYS_HEAP_BIG_ONLY=y
CONFIG_VIDEO_LOG_LEVEL_DBG=y