-
Notifications
You must be signed in to change notification settings - Fork 9
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
[FEATURE REQUEST]ESP32 support #5
Comments
There are little updates done in esp8266 arduino core to enable web hooks. I guess the hook call in ESP 32 arduino would have to happen there. Do you think you could make a PR of it ? |
So if I implement each steps - in theory it should be ok ? |
It will be OK, no reason against it. I forgot to mention the return type in bool WebServer::_parseRequest(WiFiClient& client) that must be changed to
|
ok noted - thank you 👍 |
@d-a-v I did first part luc-github/arduino-esp32@b523379 Testing with HelloServer.ino
On serial
Now checking WebDav code but I have realized that FS of ESP32 is different from ESP8266 so cannot be drop as it is , as well as all call related to ESP8266WebServer - I will check that part first before pushing PR to ESP32 core |
The "hooked" way of using espwebdav imposes that the files on the filesystem are stored in |
Sorry you misunderstood my test So it is ok with Helloserver.ino, I have clarified my report |
hi here the POC luc-github@d949d6f I have some refresh problem - but not sure how to address it |
OK I have followed your advice and indeed debug was part of issue
Helloserver.ino => Ok |
spiffs has no support for directories, but sdfs has. What FS did you try with ? |
yes I know, I am trying with SPIFFS - ESP32 has SPIFFS/FAT /SD not yet LITTLEFS , it is planned in 2.0 but currently it can be used as external FS - I will try it later I also suspect the pb with the hooked is also related with directory pb, a nice to have would be to separate the url from the real directory name |
That is a fair request |
still working on difference of FS ESP8266 Little FS
ESP32 LittleFS
ESP32 SPIFFS
|
The simple_esp32.ino is ok I do not know what is missing 😭 |
How wiring sdcard to esp32 ? |
SD cards have mmc emulation. It's on the SPI bus. |
thanks :D |
I know it may need some esp32 core update but any chance for ESP32 support ?
The text was updated successfully, but these errors were encountered: