Skip to content

Commit f1c588c

Browse files
author
fvanroie
committed
Update to rc15
1 parent 36f9256 commit f1c588c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

lib/SimpleFTPServer/FtpServer.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,9 @@ uint8_t FtpServer::handleFTP() {
293293
void FtpServer::clientConnected()
294294
{
295295
// DEBUG_PRINTLN( F(" Client connected!") );
296-
client.print(F("220 ---")); client.print(welcomeMessage); client.println(F(" ---"));
297-
// client.print(F("220---")); client.print(welcomeMessage); client.println(F(" ---"));
298-
// client.println(F("220--- By Renzo Mischianti ---"));
299-
// client.print(F("220 -- Version ")); client.print(FTP_SERVER_VERSION); client.println(F(" --"));
296+
client.print (F("220--- ")); client.print(welcomeMessage); client.println(F(" ---"));
297+
// client.println(F(" -- By Renzo Mischianti --"));
298+
client.print (F("220 -- Version ")); client.print(FTP_SERVER_VERSION);
300299
iCL = 0;
301300
if (FtpServer::_callback) {
302301
FtpServer::_callback(FTP_CONNECT, free(), capacity());

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ build_flags =
7575
-D HASP_VER_MAJ=0
7676
-D HASP_VER_MIN=7
7777
;-D HASP_VER_REV=4
78-
-D HASP_VER_REV=0-rc14
78+
-D HASP_VER_REV=0-rc15
7979
;-D HASP_VER_REV=4-rc1
8080
${override.build_flags}
8181

user_setups/esp32s2/makerfabs-tft-s2.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
;***************************************************;
77

88
[env:makerfabs-tft-s2_ili9488]
9-
extends = esp32s2-solo_16mb_v2
9+
extends = arduino_esp32s2-solo_v2, flash_16mb
1010
board = esp32s2
1111

1212
build_flags =
1313
${env.build_flags}
1414
${esp32s2.build_flags}
15+
${esp32s2.no_ps_ram}
1516

1617
;region -- TFT_eSPI build options ------------------------
1718
-D ILI9488_DRIVER=1

0 commit comments

Comments
 (0)