a0ddba5faa
Update Kconfig to improve LVGL Demo performance. - enable ICache, DCache, and cache management. - enable Chrom-ART. - enable double frame buffer and full refresh. - set bits per pixel to 16. Signed-off-by: Charles Dias <charlesdias.cd@outlook.com>
17 lines
307 B
Plaintext
17 lines
307 B
Plaintext
/*
|
|
* Copyright (c) Charles Dias <charlesdias.cd@outlook.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if DT_NODE_HAS_STATUS(DT_NODELABEL(sdram2), okay)
|
|
GROUP_START(SDRAM2)
|
|
|
|
SECTION_PROLOGUE(_STM32_SDRAM2_SECTION_NAME, (NOLOAD),)
|
|
{
|
|
*(.lvgl_buf)
|
|
} GROUP_LINK_IN(SDRAM2)
|
|
|
|
GROUP_END(SDRAM2)
|
|
#endif
|