Skip to content

Commit

Permalink
Update to rc15
Browse files Browse the repository at this point in the history
  • Loading branch information
fvanroie committed Dec 12, 2024
1 parent 36f9256 commit f1c588c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions lib/SimpleFTPServer/FtpServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,9 @@ uint8_t FtpServer::handleFTP() {
void FtpServer::clientConnected()
{
// DEBUG_PRINTLN( F(" Client connected!") );
client.print(F("220 ---")); client.print(welcomeMessage); client.println(F(" ---"));
// client.print(F("220---")); client.print(welcomeMessage); client.println(F(" ---"));
// client.println(F("220--- By Renzo Mischianti ---"));
// client.print(F("220 -- Version ")); client.print(FTP_SERVER_VERSION); client.println(F(" --"));
client.print (F("220--- ")); client.print(welcomeMessage); client.println(F(" ---"));
// client.println(F(" -- By Renzo Mischianti --"));
client.print (F("220 -- Version ")); client.print(FTP_SERVER_VERSION);
iCL = 0;
if (FtpServer::_callback) {
FtpServer::_callback(FTP_CONNECT, free(), capacity());
Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ build_flags =
-D HASP_VER_MAJ=0
-D HASP_VER_MIN=7
;-D HASP_VER_REV=4
-D HASP_VER_REV=0-rc14
-D HASP_VER_REV=0-rc15
;-D HASP_VER_REV=4-rc1
${override.build_flags}

Expand Down
3 changes: 2 additions & 1 deletion user_setups/esp32s2/makerfabs-tft-s2.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
;***************************************************;

[env:makerfabs-tft-s2_ili9488]
extends = esp32s2-solo_16mb_v2
extends = arduino_esp32s2-solo_v2, flash_16mb
board = esp32s2

build_flags =
${env.build_flags}
${esp32s2.build_flags}
${esp32s2.no_ps_ram}

;region -- TFT_eSPI build options ------------------------
-D ILI9488_DRIVER=1
Expand Down

0 comments on commit f1c588c

Please sign in to comment.