diff --git a/esp3d/src/modules/ftp/FtpServer.cpp b/esp3d/src/modules/ftp/FtpServer.cpp index bdddfb62..124f6890 100644 --- a/esp3d/src/modules/ftp/FtpServer.cpp +++ b/esp3d/src/modules/ftp/FtpServer.cpp @@ -260,7 +260,7 @@ void FtpServer::handle() { } else if (cmdStage == FTP_Client) { // Ftp server idle if (ftpServer->hasClient()) { client.stop(); - client = ftpServer->available(); + client = ftpServer->accept(); } if (client.connected()) { // A client connected clientConnected(); @@ -1051,7 +1051,7 @@ int FtpServer::dataConnect(bool out150) { while (!data.connected() && count-- > 0) { if (dataServer->hasClient()) { data.stop(); - data = dataServer->available(); + data = dataServer->accept(); } delay(1); } diff --git a/esp3d/src/modules/update/update_service.cpp b/esp3d/src/modules/update/update_service.cpp index b46d7f07..08caf04d 100644 --- a/esp3d/src/modules/update/update_service.cpp +++ b/esp3d/src/modules/update/update_service.cpp @@ -70,7 +70,7 @@ const uint16_t IPKeysPos[] = {ESP_STA_IP_VALUE, ESP_STA_GATEWAY_VALUE, ESP_AP_IP_VALUE, ESP_ETH_STA_IP_VALUE, ESP_ETH_STA_GATEWAY_VALUE, ESP_ETH_STA_MASK_VALUE, ESP_ETH_STA_DNS_VALUE}; const char* ServintKeysVal[] = { - "Serial_Bridge_Baud" + "Serial_Bridge_Baud", "HTTP_Port", "TELNET_Port", "SENSOR_INTERVAL",