Webserver slow to send files
Posted: Thu Apr 07, 2016 12:57 pm
Code below has a webserver at wserver, and its requested a file which I send to it, but slowly, approx 500 bytes per second. How can this be made to go faster?
Code: Select all
void send() {
int i;
WiFiClient client = wserver.client();
makeHeader();
client.write((uint8_t*)buffer, 50);
for (i = 0; i < 100; ++i) {
client.write((uint8_t*)buffer, 1024);
}
}