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>
20 lines
274 B
Plaintext
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)>;
|
|
};
|