6f3b30ecb5
Add support for u-blox BMD-360-EVAL which uses the nRF52811. This board is functionally equivalent to the nRF52dk with a nRF52811 mounted in place of the nRF52832 with the exception of not having debug-in and the shield SWD header. DEVELOP_IN_NRF52832 is *not* required since the IC used is the nRF52811. Note that header pin numbers noted in index.rst are shown with respect to the pin 1 markings on the BMD-3xx-EVAL boards, and are flipped from the nRF52dk_nrf52811. Tested with blinky, button, and Bluetooth peripheral_hr Edited to include changes similar to those requested in https://github.com/zephyrproject-rtos/zephyr/pull/33850 (nRF52810 there vs. nRF52811 here) Signed-off-by: Bob Recny <bob.recny@u-blox.com>
31 lines
511 B
Plaintext
31 lines
511 B
Plaintext
# BMD-360-EVAL board configuration
|
|
|
|
# Copyright (c) 2021 u-blox AG
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
CONFIG_SOC_SERIES_NRF52X=y
|
|
CONFIG_SOC_NRF52811_QFAA=y
|
|
CONFIG_BOARD_UBX_BMD360EVAL_NRF52811=y
|
|
|
|
# Enable MPU
|
|
CONFIG_ARM_MPU=y
|
|
|
|
# Enable hardware stack protection
|
|
CONFIG_HW_STACK_PROTECTION=y
|
|
|
|
# Enable RTT
|
|
CONFIG_USE_SEGGER_RTT=y
|
|
|
|
# enable GPIO
|
|
CONFIG_GPIO=y
|
|
|
|
# enable uart driver
|
|
CONFIG_SERIAL=y
|
|
|
|
# enable console
|
|
CONFIG_CONSOLE=y
|
|
CONFIG_UART_CONSOLE=y
|
|
|
|
# additional board options
|
|
CONFIG_GPIO_AS_PINRESET=y
|