zephyr/samples/bluetooth/hci_uart/Makefile
Johan Hedberg 3fc4fd53f6 Bluetooth: samples/hci_uart: Add micro:bit configuration
The BBC micro:bit doesn't have UART HW flow control, so it needs to be
disabled to build for the board. The baudrate is also lowered to
115200 since 1Mbps is likely to be unreliable without flow control.

Change-Id: I1725a2a1e46cfbc0f57b4f5c4ee57ff52d9670e9
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
2016-11-11 07:59:15 +02:00

10 lines
152 B
Makefile

BOARD ?= nrf52_pca10040
ifeq ($(BOARD),bbc_microbit)
CONF_FILE ?= microbit.conf
else
CONF_FILE ?= nrf5.conf
endif
include $(ZEPHYR_BASE)/Makefile.inc