Deprecate BT_CTLR, and add a new HAS_BT_CTLR as a virtual option which specific users (like BT_LL_SW_SPLIT) select. This also means that we can remove all places that were forcefully enabling the BT_CTLR option, and instead we now depend on devicetree to get some local LL HCI driver enabled which in turn also enables the HAS_BT_CTLR option. Signed-off-by: Johan Hedberg <johan.hedberg@silabs.com>
36 lines
465 B
Text
36 lines
465 B
Text
# reel board configuration
|
|
|
|
# Copyright (c) 2018-2019 PHYTEC Messtechnik GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_REEL_BOARD
|
|
|
|
config I2C
|
|
default y
|
|
|
|
if FXOS8700
|
|
|
|
choice FXOS8700_MODE
|
|
default FXOS8700_MODE_ACCEL
|
|
endchoice
|
|
|
|
endif # FXOS8700
|
|
|
|
if LVGL
|
|
|
|
choice LV_COLOR_DEPTH
|
|
default LV_COLOR_DEPTH_1
|
|
endchoice
|
|
|
|
config LV_Z_BITS_PER_PIXEL
|
|
default 1
|
|
|
|
config LV_DPI_DEF
|
|
default 130
|
|
|
|
config LV_Z_VDB_SIZE
|
|
default 16
|
|
|
|
endif # LVGL
|
|
|
|
endif # BOARD_REEL_BOARD
|