30 lines
354 B
Plaintext
30 lines
354 B
Plaintext
# Kconfig - nRF51 BLE400 board configuration
|
|
#
|
|
# Copyright (c) 2018 Roman Tataurov <diytronic@yandex.ru>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_NRF51_BLE400
|
|
|
|
config BOARD
|
|
default "nrf51_ble400"
|
|
|
|
if I2C
|
|
|
|
config I2C_0
|
|
default y
|
|
|
|
endif # I2C
|
|
|
|
if SPI
|
|
|
|
config SPI_1
|
|
default y
|
|
|
|
endif # SPI
|
|
|
|
config BT_CTLR
|
|
default BT
|
|
|
|
endif # BOARD_NRF51_BLE400
|