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:
Hauke Petersen
2019-11-19 09:45:17 +01:00
committed by Szymon Janc
parent f7dbe6b125
commit bcf09622cb
+1 -1
View File
@@ -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