daemon: enable software aes128

This commit is contained in:
Matthias Ringwald 2021-05-19 09:37:41 +02:00
parent 8e170f4213
commit 43b344c96e
2 changed files with 4 additions and 0 deletions

View File

@ -159,6 +159,7 @@ echo "#define ENABLE_LE_SECURE_CONNECTIONS" >> btstack_config.h
echo "#define ENABLE_LOG_ERROR" >> btstack_config.h
echo "#define ENABLE_LOG_INFO " >> btstack_config.h
echo "#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS" >> btstack_config.h
echo "#define ENABLE_SOFTWARE_AES128" >> btstack_config.h
echo "#define ENABLE_PRINTF_HEXDUMP" >> btstack_config.h
echo "#define ENABLE_RFCOMM" >> btstack_config.h
echo "#define ENABLE_SDP" >> btstack_config.h

View File

@ -6,6 +6,7 @@ CC = @CC@
LDFLAGS = @LDFLAGS@
CFLAGS = @CFLAGS@ \
-I ${BTSTACK_ROOT}/3rd-party/micro-ecc \
-I ${BTSTACK_ROOT}/3rd-party/rijndael \
-I ${BTSTACK_ROOT}/chipset/intel \
-I $(BTSTACK_ROOT)/platform/daemon/src \
-I $(BTSTACK_ROOT)/platform/daemon/src \
@ -19,6 +20,7 @@ USB_CFLAGS = @USB_CFLAGS@
USB_LDFLAGS = @USB_LDFLAGS@
VPATH += ${BTSTACK_ROOT}/3rd-party/micro-ecc
VPATH += ${BTSTACK_ROOT}/3rd-party/rijndael
VPATH += ${BTSTACK_ROOT}/chipset/intel
VPATH += ${BTSTACK_ROOT}/platform/daemon/src
VPATH += ${BTSTACK_ROOT}/platform/corefoundation
@ -74,6 +76,7 @@ BTdaemon_SOURCES = \
l2cap_signaling.o \
le_device_db_tlv.o \
rfcomm.o \
rijndael.o \
sdp_client.o \
sdp_client_rfcomm.o \
sdp_server.o \