31 lines
476 B
Plaintext
31 lines
476 B
Plaintext
|
# Kconfig - Sparkfun nRF52832 breakout board configuration
|
||
|
#
|
||
|
# Copyright (c) 2017 Shawn Nock <shawn@monadnock.ca>
|
||
|
# Copyright (c) 2016 Nordic Semiconductor ASA
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
if BOARD_NRF52_SPARKFUN
|
||
|
|
||
|
config BOARD
|
||
|
default nrf52_sparkfun
|
||
|
|
||
|
if GPIO_NRF5
|
||
|
|
||
|
config GPIO_NRF5_P0
|
||
|
default y
|
||
|
|
||
|
endif # GPIO_NRF5
|
||
|
|
||
|
if UART_NRF5
|
||
|
|
||
|
config UART_NRF5_GPIO_TX_PIN
|
||
|
default 27
|
||
|
|
||
|
config UART_NRF5_GPIO_RX_PIN
|
||
|
default 26
|
||
|
|
||
|
endif # UART_NRF5
|
||
|
|
||
|
endif # BOARD_NRF52_SPARKFUN
|