1# Copyright (c) 2024 Renesas Electronics Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "Display Read Write Test"
5
6source "Kconfig.zephyr"
7
8config DISPLAY_BUFFER_USE_GENERIC_SECTION
9	bool "Place the display buffer in a specific memory section"
10	help
11	  Place the display buffer in a specific memory section.
12
13config DISPLAY_BUFFER_ALIGNMENT
14	int "Display buffer memory alignment"
15	default 32
16	help
17	  Specific display buffer alignment.
18
19if DISPLAY_BUFFER_USE_GENERIC_SECTION
20
21config DISPLAY_BUFFER_SECTION
22	string "Memory section to place Display Buffer"
23	help
24	  Specific memory section to place the display buffer.
25
26endif # DISPLAY_BUFFER_USE_GENERIC_SECTION
27