Add hci_event_builder.c to various ports and tests

This commit is contained in:
Matthias Ringwald 2024-08-20 10:59:02 +02:00
parent 58e8c9f546
commit 0681649248
11 changed files with 11 additions and 0 deletions

View File

@ -56,6 +56,7 @@ COMMON += \
hci_cmd.c \
hci_dump.c \
hci_event.c \
hci_event_builder.c \
l2cap.c \
l2cap_signaling.c \
btstack_audio.c \

View File

@ -73,6 +73,7 @@ BTdaemon_SOURCES = \
hci_dump.o \
hci_dump_posix_fs.o \
hci_dump_posix_stdout.o \
hci_event_builder.o \
hci_transport_h4.o \
l2cap.o \
l2cap_signaling.o \

View File

@ -158,6 +158,7 @@ COMMON = \
hci_cmd.o \
hci_dump.o \
hci_dump_embedded_stdout.o \
hci_event_builder.o \
btstack_uart_block_embedded.o \
hal_flash_bank_mxc.o \
btstack_audio.o \

View File

@ -157,6 +157,7 @@ ${BTSTACK_ROOT}/src/classic/spp_server.c \
${BTSTACK_ROOT}/src/hci.c \
${BTSTACK_ROOT}/src/hci_cmd.c \
${BTSTACK_ROOT}/src/hci_dump.c \
${BTSTACK_ROOT}/src/hci_event_builder.c \
${BTSTACK_ROOT}/src/hci_transport_h4.c \
${BTSTACK_ROOT}/src/l2cap.c \
${BTSTACK_ROOT}/src/l2cap_signaling.c \

View File

@ -129,6 +129,7 @@ ${BTSTACK_ROOT}/src/classic/spp_server.c \
${BTSTACK_ROOT}/src/hci.c \
${BTSTACK_ROOT}/src/hci_cmd.c \
${BTSTACK_ROOT}/src/hci_dump.c \
${BTSTACK_ROOT}/src/hci_event_builder.c \
${BTSTACK_ROOT}/src/hci_transport_h4.c \
${BTSTACK_ROOT}/src/l2cap.c \
${BTSTACK_ROOT}/src/l2cap_signaling.c \

View File

@ -128,6 +128,7 @@ ${BTSTACK_ROOT}/src/classic/spp_server.c \
${BTSTACK_ROOT}/src/hci.c \
${BTSTACK_ROOT}/src/hci_cmd.c \
${BTSTACK_ROOT}/src/hci_dump.c \
${BTSTACK_ROOT}/src/hci_event_builder.c \
${BTSTACK_ROOT}/src/hci_transport_h4.c \
${BTSTACK_ROOT}/src/l2cap.c \
${BTSTACK_ROOT}/src/l2cap_signaling.c \

View File

@ -79,6 +79,7 @@ ${BTSTACK_ROOT}/src/btstack_util.c \
${BTSTACK_ROOT}/src/hci.c \
${BTSTACK_ROOT}/src/hci_cmd.c \
${BTSTACK_ROOT}/src/hci_dump.c \
${BTSTACK_ROOT}/src/hci_event_builder.c \
${BTSTACK_ROOT}/src/l2cap.c \
${BTSTACK_ROOT}/src/l2cap_signaling.c \
${BTSTACK_ROOT}/src/hci_transport_h4.c \

View File

@ -82,6 +82,7 @@ ${BTSTACK_ROOT}/src/hci.c \
${BTSTACK_ROOT}/src/hci_cmd.c \
${BTSTACK_ROOT}/src/hci_dump.c \
${BTSTACK_ROOT}/src/hci_event.c \
${BTSTACK_ROOT}/src/hci_event_builder.c \
${BTSTACK_ROOT}/src/hci_transport_h4.c \
${BTSTACK_ROOT}/src/l2cap.c \
${BTSTACK_ROOT}/src/l2cap_signaling.c \

View File

@ -79,6 +79,7 @@ ${BTSTACK_ROOT}/src/hci.c \
${BTSTACK_ROOT}/src/hci_cmd.c \
${BTSTACK_ROOT}/src/hci_dump.c \
${BTSTACK_ROOT}/src/hci_event.c \
${BTSTACK_ROOT}/src/hci_event_builder.c \
${BTSTACK_ROOT}/src/hci_transport_h4.c \
${BTSTACK_ROOT}/src/l2cap.c \
${BTSTACK_ROOT}/src/l2cap_signaling.c \

View File

@ -74,6 +74,7 @@ ${BTSTACK_ROOT}/src/btstack_util.c \
${BTSTACK_ROOT}/src/hci.c \
${BTSTACK_ROOT}/src/hci_cmd.c \
${BTSTACK_ROOT}/src/hci_dump.c \
${BTSTACK_ROOT}/src/hci_event_builder.c \
${BTSTACK_ROOT}/src/l2cap.c \
${BTSTACK_ROOT}/src/l2cap_signaling.c \
${BTSTACK_ROOT}/src/hci_transport_h4.c \

View File

@ -24,6 +24,7 @@ COMMON = \
btstack_util.c \
gatt_client.c \
hci_cmd.c \
hci_event_builder.c \
hci_dump.c \
le_device_db_memory.c \
mock.c \