Skip to content
This repository was archived by the owner on Jan 21, 2025. It is now read-only.

Commit 359cc68

Browse files
committed
update slow example
1 parent 25742e1 commit 359cc68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/SimpleServer/SimpleServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ void setup() {
509509
uint32_t l = request->getParam("l")->value().toInt();
510510
Serial.printf("d = %" PRIu32 ", l = %" PRIu32 "\n", d, l);
511511
AsyncWebServerResponse* response = request->beginChunkedResponse("text/html", [d, l](uint8_t* buffer, size_t maxLen, size_t index) -> size_t {
512-
Serial.printf("%" PRIu32 "\n", index);
512+
Serial.printf("%u\n", index);
513513
// finished ?
514514
if (index >= l)
515515
return 0;

0 commit comments

Comments
 (0)