hello,
I Have two nRF52833 that I have communicating over BLE. I am using soft device S140. I have my data packets use the default data length maximum of 20 bytes. I am trying to configure it such that data packets have more then 20 bytes.
I call sd_ble_gap_data_length_update to set data length to 230 bytes. I do the following:
<debug> nrf_ble_gatt: max_rx_octets: 230
<debug> nrf_ble_gatt: max_tx_octets: 230
<debug> nrf_ble_gatt: max_rx_time: 2120
<debug> nrf_ble_gatt: max_tx_time: 2120
latter I call sd_ble_gatts_value_set to fill the data packet with my data.
when I do this I get the error [NRF_ERROR_DATA_SIZE].
I am doing something wrong and I am not sure what. have I configured something incorrectly?
thanks