FTP from SD card connected in SPI mode
-
-
Hi,
I would like to transfer file(s) from SD card to Windows PC via WIFI.
SD card is connected in SPI Mode.
(Note: Connecting SD Card via 1 or 4 bit MMC mode appears to be black magic)
ESP32 will play the role of the simple FTP server.
Which library to use and how to set up a sketch to make it work?
Regards,
Dusan
-
Hi Dusan,
you can use this example.
And you must follow the instruction that you can find on this article
FTP server on esp8266 and esp32
It’s important that you change the configuration on FtpServerKey.h like so
#ifndef DEFAULT_FTP_SERVER_NETWORK_TYPE_ESP32
#define DEFAULT_FTP_SERVER_NETWORK_TYPE_ESP32 NETWORK_ESP32
#define DEFAULT_STORAGE_TYPE_ESP32 STORAGE_SD
#endif
Bye Renzo
- You must be logged in to reply to this topic.