d090751c3d
Adjust the documentation and devicetree overlays so the sample can be built for any board with an Arduino I2C and SPI pinout, defaulting I2C and SPI to y to make it easier to switch between the two without requiring a pristine build. The user has to choose an appropriate overlay or have a sensor built in to the board. Use the newly introduced DEVICE_DT_GET_ANY() in main.c to ask for a bosch,bme280 without worrying over the details or exposing DT_DRV_COMPAT-based functionality that is really meant for drivers. Remove the no-longer-needed board specific overlay for nRF52840 DK; this is covered by the generic Arduino overlays now. Fix the datasheet link while we're here. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
23 lines
396 B
Plaintext
23 lines
396 B
Plaintext
# Copyright (c) 2020, Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config LOG
|
|
default y
|
|
|
|
config LOG_PRINTK
|
|
default y
|
|
|
|
config SENSOR_LOG_LEVEL
|
|
default 4
|
|
|
|
# Enable SPI and I2C support by default so that the sample works with
|
|
# the device connected either way. These defaults can be overridden if
|
|
# needed.
|
|
config SPI
|
|
default y
|
|
|
|
config I2C
|
|
default y
|
|
|
|
source "Kconfig.zephyr"
|