I want to transfer a 500 byte file to arduino mega but the buffer size is only 64 bytes. Kindly if anyone can guide me on this...here is my code
while (Serial.available()>0)
{
spr1=Serial.readStringUntil(';');
spr1.trim();
lcd.clear();
lcd.println(spr1);
}
you can transfer it in chunks of e.g. 32 bytes, until all bytes are sent.
Thank you Rob
Yeah i am trying that as well but i need to know how i can do it?
I am sending it into chunks but its still receiving them as a whole. The problem is with receiving
What are you transferring it from ?