Hi i am using nrf52840 ble uart central sdk with latest ver. but i can able transmit up to 980 bytes max in the UART tx how can I increase these bytes or is there any limitation in this and the uart buffer size is initialized to 512 and i attached the piece of code also
here length =1000bytes and array size is also 1000bytes
void send_uart_message(const uint8_t *data, uint16_t length)
{
//printf("data pkt lenght = %d \n", length);
for (uint16_t i = 0; i < length; i++)
{
//printf(" UART data = %0X \n ",data[i]);
// Send the current byte over UART
ret_code_t err_code = app_uart_put(data[i]);
// Check for errors during transmission
//APP_ERROR_CHECK(err_code);
}
}