Skip to content

Commit a561f96

Browse files
anhmolteivindj-nordic
authored andcommitted
include: ble_conn_params: incorrect stated maximum ATT MTU value
SoftDevice supports ATT MTU higher than 247. Theoretically as high as 65535, but limited by configuration (CONFIG_NRF_SDH_BLE_GATT_MAX_MTU_SIZE). Signed-off-by: Andreas Moltumyr <[email protected]>
1 parent 3f3ef81 commit a561f96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/ble_conn_params.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ int ble_conn_params_override(uint16_t conn_handle, const ble_gap_conn_params_t *
118118
* @brief Initiate an ATT MTU exchange procedure for a given connection.
119119
*
120120
* The minimum supported ATT MTU value is 23 (connection's default).
121-
* The maximum supported ATT MTU value is 247.
121+
* The maximum supported ATT MTU value is the minimum of @c CONFIG_NRF_SDH_BLE_GATT_MAX_MTU_SIZE
122+
* and 65535.
122123
*
123124
* The SoftDevice needs to be configured to support non-default ATT MTU values
124125
* by setting @c CONFIG_NRF_SDH_BLE_GATT_MAX_MTU_SIZE to the maximum ATT MTU value

0 commit comments

Comments
 (0)