xref: /btstack/port/samv71-xplained-atwilc3000/btstack_config.h (revision 0462679231f3e954af786def517522e1a9324817)
1*04626792SMatthias Ringwald //
2*04626792SMatthias Ringwald // btstack_config.h for SAMV71 + ATWILC3000
3*04626792SMatthias Ringwald //
4*04626792SMatthias Ringwald 
5*04626792SMatthias Ringwald #ifndef __BTSTACK_CONFIG
6*04626792SMatthias Ringwald #define __BTSTACK_CONFIG
7*04626792SMatthias Ringwald 
8*04626792SMatthias Ringwald #define HAVE_INIT_SCRIPT
9*04626792SMatthias Ringwald #define HAVE_EMBEDDED_TICK
10*04626792SMatthias Ringwald #define HAVE_UART_DMA_SET_FLOWCONTROL
11*04626792SMatthias Ringwald 
12*04626792SMatthias Ringwald #define ENABLE_BLE
13*04626792SMatthias Ringwald #define ENABLE_CLASSIC
14*04626792SMatthias Ringwald 
15*04626792SMatthias Ringwald #define ENABLE_LOG_INFO
16*04626792SMatthias Ringwald #define ENABLE_LOG_ERROR
17*04626792SMatthias Ringwald #define ENABLE_LE_PERIPHERAL
18*04626792SMatthias Ringwald 
19*04626792SMatthias Ringwald #define HCI_ACL_PAYLOAD_SIZE 1021
20*04626792SMatthias Ringwald 
21*04626792SMatthias Ringwald // memory config
22*04626792SMatthias Ringwald #define MAX_NR_HCI_CONNECTIONS 1
23*04626792SMatthias Ringwald #define MAX_NR_L2CAP_SERVICES  2
24*04626792SMatthias Ringwald #define MAX_NR_L2CAP_CHANNELS  2
25*04626792SMatthias Ringwald #define MAX_NR_RFCOMM_MULTIPLEXERS 1
26*04626792SMatthias Ringwald #define MAX_NR_RFCOMM_SERVICES 2
27*04626792SMatthias Ringwald #define MAX_NR_RFCOMM_CHANNELS 1
28*04626792SMatthias Ringwald #define MAX_NR_DB_MEM_DEVICE_LINK_KEYS  2
29*04626792SMatthias Ringwald #define MAX_NR_DB_MEM_SERVICES 1
30*04626792SMatthias Ringwald #define MAX_NR_SM_LOOKUP_ENTRIES 1
31*04626792SMatthias Ringwald #define MAX_NR_SERVICE_RECORD_ITEMS 2
32*04626792SMatthias Ringwald #define MAX_NR_LE_DEVICE_DB_ENTRIES 1
33*04626792SMatthias Ringwald 
34*04626792SMatthias Ringwald #endif
35*04626792SMatthias Ringwald 
36