File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
features/FEATURE_BLE/targets
TARGET_NORDIC/TARGET_NORDIC_CORDIO/TARGET_NRF5x Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 24
24
},
25
25
"max-l2cap-channels" : {
26
26
"help" : " Maximum number of connection oriented channels" ,
27
- "value" : 8 ,
27
+ "value" : 0 ,
28
28
"macro_name" : " L2C_COC_CHAN_MAX"
29
29
},
30
30
"max-l2cap-clients" : {
31
31
"help" : " Maximum number of connection oriented channel registered clients" ,
32
- "value" : 4 ,
32
+ "value" : 0 ,
33
33
"macro_name" : " L2C_COC_REG_MAX"
34
34
},
35
35
"max-att-writes" : {
Original file line number Diff line number Diff line change @@ -67,11 +67,11 @@ using namespace ble::vendor::cordio;
67
67
#define MBED_CONF_CORDIO_LL_TX_BUFFERS MBED_CONF_CORDIO_LL_NRF52840_TX_BUFFERS
68
68
#define MBED_CONF_CORDIO_LL_PHY_CODED_SUPPORT MBED_CONF_CORDIO_LL_NRF52840_PHY_CODED_SUPPORT
69
69
70
- #define CORDIO_LL_MEMORY_FOOTPRINT 41906UL
70
+ #define CORDIO_LL_MEMORY_FOOTPRINT 15400UL
71
71
72
72
#else
73
73
74
- #define CORDIO_LL_MEMORY_FOOTPRINT 12768UL
74
+ #define CORDIO_LL_MEMORY_FOOTPRINT 12500UL
75
75
76
76
#endif
77
77
@@ -235,9 +235,9 @@ ble::vendor::cordio::buf_pool_desc_t NRFCordioHCIDriver::get_buffer_pool_descrip
235
235
{
236
236
static union {
237
237
#if defined(NRF52840_XXAA)
238
- uint8_t buffer[ 17304 ];
238
+ uint8_t buffer[ 4900 ];
239
239
#else
240
- uint8_t buffer[ 8920 ];
240
+ uint8_t buffer[ 4900 ];
241
241
#endif
242
242
uint64_t align;
243
243
};
@@ -246,8 +246,7 @@ ble::vendor::cordio::buf_pool_desc_t NRFCordioHCIDriver::get_buffer_pool_descrip
246
246
{ 32 , 16 + 4 },
247
247
{ 64 , 8 },
248
248
{ 128 , 4 + MBED_CONF_CORDIO_LL_MAX_ADVERTISING_REPORTS },
249
- { aclBufSize, MBED_CONF_CORDIO_LL_TX_BUFFERS + MBED_CONF_CORDIO_LL_RX_BUFFERS },
250
- { 272 , 1 }
249
+ { aclBufSize, MBED_CONF_CORDIO_LL_TX_BUFFERS + MBED_CONF_CORDIO_LL_RX_BUFFERS }
251
250
};
252
251
253
252
return buf_pool_desc_t (buffer, pool_desc);
Original file line number Diff line number Diff line change 14
14
" INIT_PERIPHERAL" ,
15
15
" INIT_ENCRYPTED" ,
16
16
" LHCI_ENABLE_VS=0" ,
17
- " BB_CLK_RATE_HZ=1000000"
17
+ " BB_CLK_RATE_HZ=1000000" ,
18
+ " LL_MAX_PER_SCAN=3"
18
19
]
19
20
}
You can’t perform that action at this time.
0 commit comments