34 lines
482 B
Plaintext
34 lines
482 B
Plaintext
# STM32L562E-DK Discovery board configuration
|
|
|
|
# Copyright (c) 2020 Yestin Sun
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_STM32L562E_DK
|
|
|
|
if BT
|
|
|
|
config BT_BLUENRG_ACI
|
|
default y
|
|
|
|
# Disable Flow control
|
|
config BT_HCI_ACL_FLOW_CONTROL
|
|
default n
|
|
|
|
config BT_HCI_VS
|
|
default n
|
|
|
|
endif # BT
|
|
|
|
config MIPI_DBI_STM32_FMC_MEM_BARRIER
|
|
default n if MIPI_DBI_STM32_FMC
|
|
|
|
if DISPLAY
|
|
|
|
choice ST7789V_PIXEL_FORMAT
|
|
default ST7789V_BGR565
|
|
endchoice
|
|
|
|
endif # DISPLAY
|
|
|
|
endif # BOARD_STM32L562E_DK
|