From a06bcae0f7f63d9d69b2f846d04300ea7058ea66 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 19 Sep 2017 15:01:39 +0200 Subject: [PATCH] arduino: fix packaging --- port/arduino/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/port/arduino/Makefile b/port/arduino/Makefile index a70a27c27..a3ffe44dc 100644 --- a/port/arduino/Makefile +++ b/port/arduino/Makefile @@ -10,11 +10,11 @@ BTSTACK_PACKAGE=/tmp/btstack ARCHIVE=btstack-arduino-${VERSION}.zip SRC_FILES = btstack_memory.c btstack_linked_list.c btstack_memory_pool.c btstack_run_loop.c -SRC_FILES += hci_dump.c hci.c hci_cmd.c btstack_util.c l2cap.c ad_parser.c +SRC_FILES += hci_dump.c hci.c hci_cmd.c btstack_util.c l2cap.c ad_parser.c hci_transport_h4.c BLE_FILES = att_db.c att_server.c att_dispatch.c att_db_util.c le_device_db_memory.c gatt_client.c BLE_FILES += sm.c ancs_client.h ancs_client.c PORT_FILES = btstack_config.h bsp_arduino_em9301.cpp BTstack.cpp BTstack.h -EMBEDDED_FILES = btstack_run_loop_embedded.c hci_transport_h4_embedded.c btstack_uart_block_embedded.c +EMBEDDED_FILES = btstack_run_loop_embedded.c btstack_uart_block_embedded.c PATHS = $(addprefix ${BTSTACK_ROOT}/src/, ${SRC_FILES}) PATHS += $(filter-out ${BTSTACK_ROOT}/src/btstack.h, $(wildcard ${BTSTACK_ROOT}/src/*.h))