mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-27 15:35:30 +00:00
rename bk_linked_list to btstack_linked_list
This commit is contained in:
parent
6773b3a0a4
commit
4fd23d4738
@ -10,7 +10,7 @@ CFLAGS += -I${BTSTACK_ROOT}/src
|
||||
|
||||
CORE += \
|
||||
btstack_memory.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
memory_pool.c \
|
||||
run_loop.c \
|
||||
|
||||
|
@ -56,7 +56,7 @@
|
||||
#include <getopt.h>
|
||||
|
||||
#include "btstack.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "run_loop.h"
|
||||
#include "run_loop_posix.h"
|
||||
#include "hci_cmds.h"
|
||||
|
@ -43,7 +43,7 @@
|
||||
#include "debug.h"
|
||||
|
||||
#include "utils.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
|
||||
// This lists should be only accessed by tests.
|
||||
static bk_linked_list_t db_mem_services = NULL;
|
||||
|
@ -55,7 +55,7 @@
|
||||
|
||||
#include "run_loop.h"
|
||||
#include "run_loop_embedded.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "hal_tick.h"
|
||||
#include "hal_cpu.h"
|
||||
|
||||
|
@ -44,7 +44,7 @@
|
||||
#define __RUN_LOOP_EMBEDDED_H
|
||||
|
||||
#include "btstack-config.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
|
||||
#ifdef HAVE_TIME
|
||||
#include <sys/time.h>
|
||||
|
@ -44,7 +44,7 @@
|
||||
#include "run_loop.h"
|
||||
#include "run_loop_private.h"
|
||||
#include "run_loop_posix.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "debug.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
|
@ -9,7 +9,7 @@ VERSION=`sed -n -e 's/^.*BTSTACK_VERSION \"\(.*\)\"/\1/p' ${BTSTACK_ROOT}/src/ve
|
||||
BTSTACK_PACKAGE=/tmp/btstack
|
||||
ARCHIVE=btstack-arduino-${VERSION}.zip
|
||||
|
||||
SRC_FILES = btstack_memory.c bk_linked_list.c memory_pool.c run_loop.c
|
||||
SRC_FILES = btstack_memory.c btstack_linked_list.c memory_pool.c run_loop.c
|
||||
SRC_FILES += hci_dump.c hci.c hci_cmds.c utils.c l2cap.c
|
||||
BLE_FILES = ad_parser.c att.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_lib.h ancs_client_lib.c
|
||||
|
@ -30,7 +30,7 @@ libBTstack_SOURCES = \
|
||||
socket_connection.c \
|
||||
hci_cmds.c \
|
||||
daemon_cmds.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
run_loop.c \
|
||||
sdp_util.c \
|
||||
utils.c \
|
||||
|
@ -34,7 +34,7 @@ CFLAGS += \
|
||||
LDFLAGS = -mmcu=msp430f5438a
|
||||
|
||||
CORE = \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
btstack_memory.c \
|
||||
hal_board.c \
|
||||
hal_compat.c \
|
||||
|
@ -17,7 +17,7 @@ VPATH += $(BTSTACK_ROOT)/src \
|
||||
|
||||
LIBRARY_NAME = libBTstack
|
||||
libBTstack_FILES = \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
daemon_cmds.c \
|
||||
hci_cmds.c \
|
||||
hci_dump.c \
|
||||
|
@ -34,7 +34,7 @@ CFLAGS += \
|
||||
LDFLAGS = -mmcu=msp430f5438a
|
||||
|
||||
CORE = \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
btstack_memory.c \
|
||||
hal_board.c \
|
||||
hal_compat.c \
|
||||
|
@ -35,7 +35,7 @@
|
||||
</logicalFolder>
|
||||
<logicalFolder name="src" displayName="src" projectFiles="true">
|
||||
<itemPath>../../../src/hci_cmds.h</itemPath>
|
||||
<itemPath>../../../src/bk_linked_list.h</itemPath>
|
||||
<itemPath>../../../src/btstack_linked_list.h</itemPath>
|
||||
<itemPath>../../../src/memory_pool.h</itemPath>
|
||||
<itemPath>../../../src/run_loop.h</itemPath>
|
||||
<itemPath>../../../src/utils.h</itemPath>
|
||||
@ -127,7 +127,7 @@
|
||||
<itemPath>../../../src/hci_transport_h4_dma.c</itemPath>
|
||||
<itemPath>../../../src/l2cap.c</itemPath>
|
||||
<itemPath>../../../src/l2cap_signaling.c</itemPath>
|
||||
<itemPath>../../../src/bk_linked_list.c</itemPath>
|
||||
<itemPath>../../../src/btstack_linked_list.c</itemPath>
|
||||
<itemPath>../../../src/memory_pool.c</itemPath>
|
||||
<itemPath>../../../src/classic/remote_device_db_memory.c</itemPath>
|
||||
<itemPath>../../../src/classic/rfcomm.c</itemPath>
|
||||
|
@ -18,7 +18,7 @@ VPATH += $(BTSTACK_ROOT)/chipset/cc256x
|
||||
CORE = \
|
||||
main.c \
|
||||
btstack_memory.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
memory_pool.c \
|
||||
run_loop.c \
|
||||
run_loop_embedded.c
|
||||
|
@ -46,7 +46,7 @@
|
||||
|
||||
#include <stddef.h> // NULL
|
||||
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "debug.h"
|
||||
#include "run_loop.h"
|
||||
#include "run_loop_private.h"
|
||||
|
@ -12,7 +12,7 @@ GLOBAL_INCLUDES += . ../../src ../../platform/embedded ../../chipset/bcm ../../.
|
||||
|
||||
# core BTstack sources
|
||||
$(NAME)_SOURCES += \
|
||||
../../src/bk_linked_list.c \
|
||||
../../src/btstack_linked_list.c \
|
||||
../../src/btstack_memory.c \
|
||||
../../src/ble/att.c \
|
||||
../../src/ble/att_dispatch.c \
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include <string.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
|
||||
#include "btstack_memory.h"
|
||||
#include "debug.h"
|
||||
|
@ -59,7 +59,7 @@
|
||||
#include "hci_transport.h"
|
||||
#include "l2cap.h"
|
||||
#include "l2cap_signaling.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "memory_pool.h"
|
||||
#include "run_loop.h"
|
||||
#include "run_loop_private.h"
|
||||
|
@ -41,7 +41,7 @@
|
||||
* Created by Matthias Ringwald on 7/13/09.
|
||||
*/
|
||||
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
@ -89,7 +89,7 @@ const remote_device_db_t * remote_device_db_fs_instance(void);
|
||||
/* API_END */
|
||||
|
||||
// MARK: non-persistent implementation
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#define MAX_NAME_LEN 32
|
||||
typedef struct {
|
||||
// linked list - assert: first field
|
||||
|
@ -43,7 +43,7 @@
|
||||
#include "debug.h"
|
||||
|
||||
#include "utils.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
|
||||
// This lists should be only accessed by tests.
|
||||
bk_linked_list_t db_mem_link_keys = NULL;
|
||||
|
@ -38,7 +38,7 @@
|
||||
#define __SDP_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
|
||||
#include "btstack-config.h"
|
||||
|
||||
|
@ -73,7 +73,7 @@
|
||||
#include "debug.h"
|
||||
#include "hci_dump.h"
|
||||
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "hci_cmds.h"
|
||||
|
||||
#define HCI_CONNECTION_TIMEOUT_MS 10000
|
||||
|
@ -52,7 +52,7 @@
|
||||
#include "classic/remote_device_db.h"
|
||||
#include "hci_cmds.h"
|
||||
#include "hci_transport.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
@ -46,7 +46,7 @@
|
||||
|
||||
#include "btstack-config.h"
|
||||
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -13,7 +13,7 @@ VPATH += ${BTSTACK_ROOT}/platform/posix
|
||||
|
||||
COMMON = \
|
||||
ad_parser.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
btstack_memory.c \
|
||||
hci.c \
|
||||
hci_cmds.c \
|
||||
|
@ -15,7 +15,7 @@ COMMON = \
|
||||
ad_parser.c \
|
||||
att.c \
|
||||
att_dispatch.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
btstack_memory.c \
|
||||
gatt_client.c \
|
||||
hci_cmds.c \
|
||||
|
@ -10,7 +10,7 @@ include ${BTSTACK_ROOT}/example/embedded/Makefile.inc
|
||||
COMMON = \
|
||||
sdp.c \
|
||||
sdp_query_rfcomm.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
btstack_memory.c \
|
||||
hci.c \
|
||||
hci_cmds.c \
|
||||
@ -32,7 +32,7 @@ COMMON = \
|
||||
MOCK = \
|
||||
mock.c \
|
||||
test_sequences.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
btstack_memory.c \
|
||||
hci_cmds.c \
|
||||
hci_dump.c \
|
||||
|
@ -13,7 +13,7 @@ VPATH += ${BTSTACK_ROOT}/src
|
||||
VPATH += ${BTSTACK_ROOT}/platform/posix
|
||||
|
||||
COMMON = \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
|
||||
COMMON_OBJ = $(COMMON:.c=.o)
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "CppUTest/TestHarness.h"
|
||||
#include "CppUTest/CommandLineTestRunner.h"
|
||||
#include "bk_linked_list.h"
|
||||
#include "btstack_linked_list.h"
|
||||
|
||||
bk_linked_list_t testList;
|
||||
linked_item_t itemA;
|
||||
|
@ -28,7 +28,7 @@ MEMORY = \
|
||||
btstack_memory.c \
|
||||
hci_dump.c \
|
||||
remote_device_db_memory.c \
|
||||
bk_linked_list.c
|
||||
btstack_linked_list.c
|
||||
|
||||
FS_OBJ = $(FS:.c=.o)
|
||||
MEMORY_OBJ = $(MEMORY:.c=.o)
|
||||
|
@ -16,7 +16,7 @@ COMMON = \
|
||||
utils.c \
|
||||
btstack_memory.c \
|
||||
memory_pool.c \
|
||||
bk_linked_list.c \
|
||||
btstack_linked_list.c \
|
||||
run_loop.c \
|
||||
run_loop_posix.c \
|
||||
hci_cmds.c \
|
||||
|
Loading…
x
Reference in New Issue
Block a user