btstack/port/libusb/btstack_config.h

57 lines
1.4 KiB
C
Raw Normal View History

2016-01-21 21:56:56 +01:00
//
// btstack_config.h for libusb port
//
#ifndef __BTSTACK_CONFIG
#define __BTSTACK_CONFIG
2016-01-21 21:56:56 +01:00
// Port related features
#define HAVE_MALLOC
2016-03-28 16:26:37 +02:00
#define HAVE_POSIX_FILE_IO
#define HAVE_BTSTACK_STDIN
2016-03-30 10:59:47 +02:00
#define HAVE_POSIX_TIME
2016-01-21 21:56:56 +01:00
// BTstack features that can be enabled
#define ENABLE_BLE
2016-01-24 18:09:29 +01:00
#define ENABLE_CLASSIC
#define ENABLE_HFP_WIDE_BAND_SPEECH
#define ENABLE_LE_CENTRAL
#define ENABLE_LE_PERIPHERAL
#define ENABLE_LE_SECURE_CONNECTIONS
#define ENABLE_LE_DATA_CHANNELS
#define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
#define ENABLE_LE_DATA_LENGTH_EXTENSION
#define ENABLE_ATT_DELAYED_RESPONSE
2016-01-21 21:56:56 +01:00
#define ENABLE_LOG_ERROR
#define ENABLE_LOG_INFO
#define ENABLE_SCO_OVER_HCI
2016-01-21 21:56:56 +01:00
#define ENABLE_SDP_DES_DUMP
#define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
#define ENABLE_SOFTWARE_AES128
// BTstack configuration. buffers, sizes, ...
#define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
#define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof BNEP header, avoid memcpy
#define NVM_NUM_LINK_KEYS 16
#define NVM_NUM_DEVICE_DB_ENTRIES 16
// Mesh Configuration
#define ENABLE_MESH
2019-07-12 23:18:48 +02:00
#define ENABLE_MESH_ADV_BEARER
#define ENABLE_MESH_GATT_BEARER
#define ENABLE_MESH_PB_ADV
2019-07-12 23:18:48 +02:00
#define ENABLE_MESH_PB_GATT
#define ENABLE_MESH_PROXY_SERVER
#define ENABLE_MESH_PROVISIONER
#define MAX_NR_MESH_TRANSPORT_KEYS 16
#define MAX_NR_MESH_VIRTUAL_ADDRESSES 16
#define MAX_NR_MESH_SUBNETS 2
// allow for one NetKey update
#define MAX_NR_MESH_NETWORK_KEYS (MAX_NR_MESH_SUBNETS+1)
#endif
2019-07-12 23:18:48 +02:00