mirror of
https://github.com/espressif/esp-nimble.git
synced 2026-08-16 23:17:53 +00:00
npl/riot/syscfg: fix BLE_LL_CONN_INIT_MAX_TX_BYTES
Currently, the default value of BLE_LL_CONN_INIT_MAX_TX_BYTES is set to 27, preventing the LL data length extension to work properly in RIOT (TX octets always set to 27). With this fix the controller is applying the desired TX octets values as defined by BLE_LL_MAX_PKT_SIZE.
This commit is contained in:
committed by
Szymon Janc
parent
f7dbe6b125
commit
bcf09622cb
@@ -502,7 +502,7 @@
|
||||
#endif
|
||||
|
||||
#ifndef MYNEWT_VAL_BLE_LL_CONN_INIT_MAX_TX_BYTES
|
||||
#define MYNEWT_VAL_BLE_LL_CONN_INIT_MAX_TX_BYTES (27)
|
||||
#define MYNEWT_VAL_BLE_LL_CONN_INIT_MAX_TX_BYTES (MYNEWT_VAL_BLE_LL_MAX_PKT_SIZE)
|
||||
#endif
|
||||
|
||||
#ifndef MYNEWT_VAL_BLE_LL_CONN_INIT_MIN_WIN_OFFSET
|
||||
|
||||
Reference in New Issue
Block a user