1# M5Stack Core2 board configuration
2# Copyright (c) 2022 AVSystem Sławomir Wolf Sp.j. (AVSystem)
3# Copyright (c) 2023 Martin Kiepfer <m.kiepfer@teleschirm.org>
4# SPDX-License-Identifier: Apache-2.0
5
6if BOARD_M5STACK_FIRE_ESP32_PROCPU
7
8config KERNEL_MEM_POOL
9	default y
10
11config GPIO_HOGS_INIT_PRIORITY
12	default 70
13
14config INPUT
15	default y
16
17configdefault LV_COLOR_16_SWAP
18	default y if LVGL
19
20# Increase initialization priority of MIPI DBI device, so that it initializes
21# after the GPIO controller
22if MIPI_DBI
23
24config MIPI_DBI_INIT_PRIORITY
25	default 82
26
27endif # MIPI_DBI
28
29endif # BOARD_M5STACK_FIRE_ESP32_PROCPU
30