1# Copyright (c) 2020, Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config LOG
5	default y
6
7config LOG_PRINTK
8	default y
9
10config SENSOR_LOG_LEVEL
11	default 4
12
13# Enable SPI and I2C support by default so that the sample works with
14# the device connected either way. These defaults can be overridden if
15# needed.
16config SPI
17	default y
18
19config I2C
20	default y
21
22source "Kconfig.zephyr"
23