1#
2# Copyright 2024, NXP
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6
7# Sample will allocate buffer equal to: (panelwidth / 8) * (panelwidth / 4) * pixel depth. For a
8# 1280x720 display in a 16-bpp format (e.g. RGB565), this is (1280 / 8) * (720 / 4) * 2 = 57600
9# bytes. We include 128 bytes of padding for kernel heap structures
10CONFIG_HEAP_MEM_POOL_SIZE=57600
11