boblemaire / asyncHTTPrequest

asynchronous HTTP for ESP using ESPasyncTCP. Works like XMLHTTPrequest in JS.
GNU General Public License v3.0
65 stars 31 forks source link

Compilation error on ESP8285 and PlatformIO #37

Closed EricPERONNIN closed 3 years ago

EricPERONNIN commented 3 years ago

Hi, I've used asyncHTTPrequest with success in the Arduino IDE. Now, I try to compile the same program in PlatformIO (I have added lib_deps = khoih.prog/AsyncHTTPRequest_Generic@^1.1.2 in the platformio.ini file) and compilation gives a lot of error. The first one is .pio\libdeps\esp8285\STM32Ethernet\src\utility/stm32_eth.h:42:23: fatal error: stm32_def.h: No such file or directory Compile a blank programm with just empty setup() and empty loop() with lib_deps = khoih.prog/AsyncHTTPRequest_Generic@^1.1.2 in the platformio.ini file gives the same error. Thanks for your help. Eric

Edit : it works after deleting STM32 files from the .pio/libdeps directory.