56 lines
684 B
Plaintext
56 lines
684 B
Plaintext
# MIMXRT1064-EVK board
|
|
|
|
# Copyright (c) 2018, NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_MIMXRT1064_EVK
|
|
|
|
config BOARD
|
|
default "mimxrt1064_evk"
|
|
|
|
choice CODE_LOCATION
|
|
default CODE_FLEXSPI2
|
|
endchoice
|
|
|
|
config DISK_DRIVER_SDMMC
|
|
default y if DISK_DRIVERS
|
|
|
|
config KSCAN
|
|
default y if LVGL
|
|
|
|
if KSCAN
|
|
|
|
config KSCAN_FT5336_INTERRUPT
|
|
default y
|
|
|
|
endif # KSCAN
|
|
|
|
if NETWORKING
|
|
|
|
config NET_L2_ETHERNET
|
|
default y
|
|
|
|
config ETH_MCUX_PHY_RESET
|
|
default y
|
|
|
|
endif # NETWORKING
|
|
|
|
if LVGL
|
|
|
|
config LV_Z_POINTER_KSCAN
|
|
default y
|
|
|
|
config LV_Z_VDB_SIZE
|
|
default 16
|
|
|
|
config LV_Z_DPI
|
|
default 128
|
|
|
|
choice LV_COLOR_DEPTH
|
|
default LV_COLOR_DEPTH_16
|
|
endchoice
|
|
|
|
endif # LVGL
|
|
|
|
endif # BOARD_MIMXRT1064_EVK
|