add btstack_tlv.c to most ports

This commit is contained in:
Matthias Ringwald 2017-11-09 13:34:08 +01:00
parent a945d99772
commit e07b53a618
12 changed files with 12 additions and 0 deletions

View File

@ -50,6 +50,7 @@ BTdaemon_SOURCES = \
bnep.c \
btstack_memory.c \
btstack_memory_pool.c \
btstack_tlv.c \
btstack_uart_block_posix.c \
daemon.c \
gatt_client.c \

View File

@ -48,6 +48,7 @@ CORE = \
btstack_run_loop.c \
btstack_run_loop_embedded.c \
btstack_util.c \
btstack_tlv.c \
COMMON = \
ad_parser.c \

View File

@ -143,6 +143,7 @@ COMMON = \
hci_dump.o \
btstack_uart_block_embedded.o \
hal_flash_bank_mxc.o \
btstack_tlv.o \
btstack_tlv_flash_bank.o \
btstack_stdin_embedded.o \

View File

@ -39,6 +39,7 @@ CORE = \
btstack_memory_pool.c \
btstack_run_loop_embedded.c \
btstack_run_loop.c \
btstack_tlv.c \
hal_board.c \
hal_compat.c \
hal_cpu.c \

View File

@ -41,6 +41,7 @@ CORE = \
btstack_memory_pool.c \
btstack_run_loop.c \
btstack_run_loop_embedded.c \
btstack_tlv.c \
hal_board.c \
hal_compat.c \
hal_cpu.c \

View File

@ -29,6 +29,7 @@ libBTstack_OBJS = \
btstack_linked_list.o \
btstack_run_loop.o \
btstack_run_loop_posix.o \
btstack_tlv.o \
btstack_util.o \
hci_cmd.o \
daemon_cmds.o \

View File

@ -5,6 +5,7 @@ obj-y += \
btstack_memory_pool.o \
btstack_ring_buffer.o \
btstack_run_loop.o \
btstack_tlv.o \
btstack_util.o \
hci.o \
hci_cmd.o \

View File

@ -156,6 +156,7 @@ CSRCS += \
${BTSTACK_ROOT_CONFIG}/src/btstack_ring_buffer.c \
${BTSTACK_ROOT_CONFIG}/src/btstack_run_loop.c \
${BTSTACK_ROOT_CONFIG}/src/btstack_util.c \
${BTSTACK_ROOT_CONFIG}/src/btstack_tlv.c \
${BTSTACK_ROOT_CONFIG}/src/classic/a2dp_sink.c \
${BTSTACK_ROOT_CONFIG}/src/classic/a2dp_source.c \
${BTSTACK_ROOT_CONFIG}/src/classic/avdtp.c \

View File

@ -31,6 +31,7 @@ COMMON = \
rfcomm.c \
sdp_client_rfcomm.c \
btstack_util.c \
btstack_tlv.c \
hci.c \
hci_cmd.c \
hci_dump.c \

View File

@ -92,6 +92,7 @@ Src/stm32l0xx_it.c \
btstack_ring_buffer.c \
btstack_run_loop.c \
btstack_run_loop_embedded.c \
btstack_tlv.c \
btstack_uart_block_embedded.c \
btstack_util.c \
device_information_service_server.c \

View File

@ -47,6 +47,7 @@ $(NAME)_SOURCES += \
../../src/btstack_memory.c \
../../src/btstack_memory_pool.c \
../../src/btstack_run_loop.c \
../../src/btstack_tlv.c \
../../src/btstack_util.c \
../../src/hci.c \
../../src/hci_cmd.c \

View File

@ -49,6 +49,7 @@ $(NAME)_SOURCES += \
../../src/btstack_run_loop.c \
../../src/btstack_util.c \
../../src/btstack_slip.c \
../../src/btstack_tlv.c \
../../src/hci.c \
../../src/hci_cmd.c \
../../src/hci_dump.c \