-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ftplib can't access the root folder in ESP32/ESP32C3 #65
Comments
Hi firminxu, |
Hi Xreef,
platformIO.ini is as below
and
|
When it works in version 2.1.8. All code is the same as above.
when I run python code I posted, I got 530 error
|
I have a similar issue - ESP8266/Arduino 2.3.2 - using FileZilla it sometimes connects and gets the directory once and after that error message as follows:
Reverting to previous version (2.1.7) resolves the problem. |
same here with Arduino core 3.x, esp32-S3, esp32-c3 and LittleFS example esp8266_esp32_LittleFS esp log show this
FTP client shows this
|
I have had the same issue. I had thought it was because my ftpserver runs in a separate task, but building the ardunio_esp32_sd example I got the same issue and also the same mounting error. Looking through the ftpserverkey.h file I found the problem. The default store for esp32 in version 2.1.8 is STORAGE_FFAT and not STORAGE_SD. Simply change the default storage type to STORAGE_SD and you should be good. Relevant section from ftpserverkey.h file in the simpleftpserver library source code as follows: // esp32 configuration Should say this makes the windows ftp client work perfectly . However still can't get Andftp or other android apps to connect for some reason. |
Hello!
Firstly, thanks for the the your good job, I can build my ftp sever easily.
I have used version 2.1.7 with my ESP32/ESP32C3 device in PlatformIO environment for a while, it works well.
After update it to 2.1.8, I can't access root folder of SD. after I rolled back to 2.1.7, it works again.
I tested it with below python code. It will print names of all the files in SD card if it worked.
The text was updated successfully, but these errors were encountered: