2016-11-18 00:12:09 +08:00
|
|
|
# Makefile - Bluetooth tester
|
2015-06-02 04:20:14 +08:00
|
|
|
|
|
|
|
#
|
2016-06-10 17:10:18 +08:00
|
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
2015-06-02 04:20:14 +08:00
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-06-02 04:20:14 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
# Makefile for the Bluetooth tester application
|
2016-11-03 19:39:04 +08:00
|
|
|
BOARD ?= arduino_101
|
2015-06-02 04:20:14 +08:00
|
|
|
|
2016-11-03 19:39:04 +08:00
|
|
|
CONF_FILE ?= default.conf
|
2015-06-02 04:20:14 +08:00
|
|
|
|
|
|
|
# UART for Bluetooth
|
|
|
|
QEMU_EXTRA_FLAGS = -serial unix:/tmp/bt-server-bredr
|
|
|
|
|
|
|
|
# UART for Tester
|
|
|
|
QEMU_EXTRA_FLAGS += -serial pipe:/tmp/bt-stack-tester
|
|
|
|
|
2015-06-15 14:46:31 +08:00
|
|
|
PRJ_INCPATH += ${ZEPHYR_BASE}/include/drivers
|
2015-06-02 04:20:14 +08:00
|
|
|
|
2016-12-22 03:38:37 +08:00
|
|
|
include $(ZEPHYR_BASE)/Makefile.test
|