Bluetooth serial out using arduino for printing images faces an issue of data loss when wifi not connected.

JEFFIN MATHEW
Posts: 3
Joined: Thu Jan 28, 2021 8:26 am

Bluetooth serial out using arduino for printing images faces an issue of data loss when wifi not connected.

Postby JEFFIN MATHEW » Thu Jan 28, 2021 9:35 am

byte receivedBytes;
while(SerialBT.available()>0)
{
receivedBytes = SerialBT.read();
recBuff[Recv_count] = receivedBytes;
Recv_count++;
bluetooth_rx_complt = 1;

if(Recv_count == 8192)
{
recBuff[Recv_count] ='\0';
Serial.write((const uint8_t*)recBuff,/Recv_count);
Serial.flush();
Recv_count = 0;
memset(recBuff,0,sizeof(recBuff));
state = FREE;
}
}
if(bluetooth_rx_complt)
{
recBuff[Recv_count] ='\0';
data_Sout_count = Recv_count;
Recv_count = 0;
bluetooth_rx_complt = 0;

Serial.write((const uint8_t*)recBuff,data_Sout_count);

return 1;
}
return 0;

JEFFIN MATHEW
Posts: 3
Joined: Thu Jan 28, 2021 8:26 am

Re: Bluetooth serial out using arduino for printing images faces an issue of data loss when wifi not connected.

Postby JEFFIN MATHEW » Fri Jan 29, 2021 4:22 am

Can it possible to serial out( Serial.write() ) when a large data is coming to the receiver queue of Bluetooth. I actually declared the Bluetooth queue as 27200(in bytes) now. I printed images with some play store applications successfully, but when large images comes it could only print almost 80 or 90% of original images when wifi(STA) is in disconnected stage.Is any one have suggestion over this issue?

Who is online

Users browsing this forum: No registered users and 88 guests