Closed AzmFarm closed 2 years ago
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
[STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions.
Whether the library allows you to send data from the UART buffer to the TCP Client. Part of the code: while (Serial2.available() > 0) { char c = Serial2.read(); sprintf(send, "%c", c); Serial.print(send); client->write(send); }
Currently data from UART buffer to TCP Client is sent only after TCP Client event processing.