zephyr/samples/subsys/display/lvgl/boards/max32662evkit.overlay
Sadik Ozer 3f4a9c408a boards: arm: adi: Enable display for MAX32662EVKIT board
MAX32662EVKIT board has CFAF128128B1-0145T display which
is 128x128 graphic display.
This commit enable mpi dbi display support with LVGL graphic library.
Pin connection of display is 3wire mode
SRAM size increased to be fit with lvgl example.

Signed-off-by: Sadik Ozer <sadik.ozer@analog.com>
2024-10-03 17:07:25 +01:00

20 lines
274 B
Plaintext

/*
* Copyright (c) 2024, Analog Devices, Inc.
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
chosen {
zephyr,sram = &sram0;
};
};
/*
* Concatenate SRAM0(16KB), SRAM1(16KB) and SRAM2(16KB)
* to lvgl example work
*/
&sram0 {
reg = <0x20000000 DT_SIZE_K(48)>;
};