41 lines
441 B
Plaintext
41 lines
441 B
Plaintext
# Kconfig - 96Boards NITROGEN board configuration
|
|
#
|
|
# Copyright (c) 2016 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_96B_NITROGEN
|
|
|
|
config BOARD
|
|
default "96b_nitrogen"
|
|
|
|
if I2C
|
|
|
|
config I2C_NRFX
|
|
def_bool y
|
|
|
|
if I2C_NRFX
|
|
|
|
config I2C_0
|
|
def_bool y
|
|
|
|
endif # I2C_NRFX
|
|
|
|
endif # I2C
|
|
|
|
if SPI
|
|
|
|
config SPI_NRFX
|
|
def_bool y
|
|
|
|
if SPI_NRFX
|
|
|
|
config SPI_0
|
|
def_bool y
|
|
|
|
endif # SPI_NRFX
|
|
|
|
endif # SPI
|
|
|
|
endif # BOARD_96B_NITROGEN
|