xref: /btstack/port/posix-h4-atwilc3000/btstack_config.h (revision 36327e5a477375af95206026b682a10acb1b5354)
1ccebdf93SMatthias Ringwald //
2ccebdf93SMatthias Ringwald // btstack_config.h for generic POSIX H4 port
3ccebdf93SMatthias Ringwald //
4ccebdf93SMatthias Ringwald 
5*36327e5aSMilanka Ringwald #ifndef BTSTACK_CONFIG_H
6*36327e5aSMilanka Ringwald #define BTSTACK_CONFIG_H
7ccebdf93SMatthias Ringwald 
8ccebdf93SMatthias Ringwald // Port related features
9d20e3046SMatthias Ringwald #define HAVE_ASSERT
10*36327e5aSMilanka Ringwald #define HAVE_BTSTACK_STDIN
11ccebdf93SMatthias Ringwald #define HAVE_MALLOC
12ccebdf93SMatthias Ringwald #define HAVE_POSIX_FILE_IO
13ccebdf93SMatthias Ringwald #define HAVE_POSIX_TIME
14ccebdf93SMatthias Ringwald 
15ccebdf93SMatthias Ringwald // BTstack features that can be enabled
16ccebdf93SMatthias Ringwald #define ENABLE_BLE
17ccebdf93SMatthias Ringwald #define ENABLE_LE_CENTRAL
18ff01079bSMatthias Ringwald #define ENABLE_LE_DATA_CHANNELS
19ccebdf93SMatthias Ringwald #define ENABLE_LE_DATA_LENGTH_EXTENSION
20*36327e5aSMilanka Ringwald #define ENABLE_LE_PERIPHERAL
21*36327e5aSMilanka Ringwald #define ENABLE_LE_SECURE_CONNECTIONS
22ccebdf93SMatthias Ringwald #define ENABLE_LOG_ERROR
23ccebdf93SMatthias Ringwald #define ENABLE_LOG_INFO
24*36327e5aSMilanka Ringwald #define ENABLE_MICRO_ECC_FOR_LE_SECURE_CONNECTIONS
25ccebdf93SMatthias Ringwald 
26ccebdf93SMatthias Ringwald // BTstack configuration. buffers, sizes, ...
27ccebdf93SMatthias Ringwald #define HCI_ACL_PAYLOAD_SIZE (1691 + 4)
28*36327e5aSMilanka Ringwald #define HCI_INCOMING_PRE_BUFFER_SIZE 14 // sizeof benep heade, avoid memcpy
29ccebdf93SMatthias Ringwald 
3081862996SMatthias Ringwald #define NVM_NUM_DEVICE_DB_ENTRIES      20
31e514a7f5SMatthias Ringwald 
32e514a7f5SMatthias Ringwald // Mesh Configuration
33e514a7f5SMatthias Ringwald #define ENABLE_MESH
34e514a7f5SMatthias Ringwald #define ENABLE_MESH_ADV_BEARER
35e514a7f5SMatthias Ringwald #define ENABLE_MESH_GATT_BEARER
36e514a7f5SMatthias Ringwald #define ENABLE_MESH_PB_ADV
37e514a7f5SMatthias Ringwald #define ENABLE_MESH_PB_GATT
38e514a7f5SMatthias Ringwald #define ENABLE_MESH_PROVISIONER
39*36327e5aSMilanka Ringwald #define ENABLE_MESH_PROXY_SERVER
40e514a7f5SMatthias Ringwald 
41*36327e5aSMilanka Ringwald #define MAX_NR_MESH_SUBNETS            2
42e514a7f5SMatthias Ringwald #define MAX_NR_MESH_TRANSPORT_KEYS    16
43e514a7f5SMatthias Ringwald #define MAX_NR_MESH_VIRTUAL_ADDRESSES 16
44e514a7f5SMatthias Ringwald 
45e514a7f5SMatthias Ringwald // allow for one NetKey update
46e514a7f5SMatthias Ringwald #define MAX_NR_MESH_NETWORK_KEYS      (MAX_NR_MESH_SUBNETS+1)
47e514a7f5SMatthias Ringwald 
48ccebdf93SMatthias Ringwald #endif
49ccebdf93SMatthias Ringwald 
50