test/flash_tlv: sort link key db using btstack_tlv on top of hal_flash_sector into main folders

This commit is contained in:
Matthias Ringwald 2017-06-05 11:52:35 +02:00
parent 25023b006d
commit d9f53676a5
10 changed files with 6 additions and 5 deletions

View File

@ -41,6 +41,7 @@
#include <stdint.h> #include <stdint.h>
#include "btstack_tlv.h" #include "btstack_tlv.h"
#include "hal_flash_sector.h"
#if defined __cplusplus #if defined __cplusplus
extern "C" { extern "C" {

View File

@ -40,7 +40,6 @@
#define __BTSTACK_TLV_H #define __BTSTACK_TLV_H
#include <stdint.h> #include <stdint.h>
#include "hal_flash_sector.h"
#if defined __cplusplus #if defined __cplusplus
extern "C" { extern "C" {

View File

@ -1,7 +1,6 @@
CC=g++ CC=g++
BTSTACK_ROOT = ../.. BTSTACK_ROOT = ../..
POSIX_ROOT= ${BTSTACK_ROOT}/platform/posix
CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest CPPUTEST_HOME = ${BTSTACK_ROOT}/test/cpputest
COMMON = \ COMMON = \
@ -14,7 +13,9 @@ COMMON = \
COMMON_OBJ = $(COMMON:.c=.o) COMMON_OBJ = $(COMMON:.c=.o)
VPATH = \ VPATH = \
${BTSTACK_ROOT}/src ${BTSTACK_ROOT}/src \
${BTSTACK_ROOT}/src/classic \
${BTSTACK_ROOT}/platform/embedded \
CFLAGS = \ CFLAGS = \
-DBTSTACK_TEST \ -DBTSTACK_TEST \
@ -25,7 +26,7 @@ CFLAGS = \
-I. \ -I. \
-I.. \ -I.. \
-I${BTSTACK_ROOT}/src \ -I${BTSTACK_ROOT}/src \
-I${BTSTACK_ROOT}/platform/posix \ -I${BTSTACK_ROOT}/platform/embedded \
LDFLAGS += -lCppUTest -lCppUTestExt LDFLAGS += -lCppUTest -lCppUTestExt

View File

@ -8,7 +8,7 @@
#include "btstack_tlv_flash_sector.h" #include "btstack_tlv_flash_sector.h"
#include "hci_dump.h" #include "hci_dump.h"
#include "classic/btstack_link_key_db.h" #include "classic/btstack_link_key_db.h"
#include "btstack_link_key_db_tlv.h" #include "classic/btstack_link_key_db_tlv.h"
#include "btstack_util.h" #include "btstack_util.h"
#include "btstack_config.h" #include "btstack_config.h"
#include "btstack_debug.h" #include "btstack_debug.h"