This commit adds supports for the nRF52840 based BLE Cell board from Contextual Electronics. This board contains support for BG95 Modem, BQ52895 charger, SD card etc and can be used as a PI Hat. In this commit, this board supports UART, I2C, SPI, Modem. Support for charger, SD card and other things will be added later. Signed-off-by: Bilal Wasim <bilalwasim676@gmail.com>
25 lines
325 B
Plaintext
25 lines
325 B
Plaintext
# nRF52840 BLE Cell board configuration
|
|
|
|
# Copyright (c) 2020 Bilal Wasim
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_CONTEXTELEC_ABC
|
|
|
|
config BOARD
|
|
default "nrf52840_ble_cell"
|
|
|
|
if USB
|
|
|
|
config USB_NRFX
|
|
default y
|
|
|
|
config USB_DEVICE_STACK
|
|
default y
|
|
|
|
endif # USB
|
|
|
|
config BT_CTLR
|
|
default BT
|
|
|
|
endif # BOARD_CONTEXTELEC_ABC
|