1# reel board configuration
2
3# Copyright (c) 2018-2019 PHYTEC Messtechnik GmbH
4# SPDX-License-Identifier: Apache-2.0
5
6if BOARD_REEL_BOARD
7
8config I2C
9	default y
10
11if FXOS8700
12
13choice FXOS8700_MODE
14	default FXOS8700_MODE_ACCEL
15endchoice
16
17endif # FXOS8700
18
19if LVGL
20
21choice LV_COLOR_DEPTH
22	default LV_COLOR_DEPTH_1
23endchoice
24
25config LV_Z_BITS_PER_PIXEL
26	default 1
27
28config LV_DPI_DEF
29	default 130
30
31config LV_Z_VDB_SIZE
32	default 16
33
34endif # LVGL
35
36endif # BOARD_REEL_BOARD
37