ESP32 examples Mongoose V7.9 #2195
-
Hello, main/mongoose.h:357:10: fatal error: poll.h: No such file or directory main/net.c:204:7: error: 'struct mg_connection' has no member named 'label' main/mongoose.h:811:19: error: incompatible type for argument 2 of 'mg_mqtt_sub' maybe this examples need an update ? Thnks alot for any help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Yes, Github does that for us every time we introduce a new line of code, all our examples build.
VSCode is just an editor, but PlatformIO is probably a different architecture and we don't have working examples for that, we don't even know if Mongoose will work on that.
Where did you get that from ? Your first choice is not a valid Mongoose platform but an IDF defined symbol, and the second one should not be needed, as the platform is automatically detected based on the former symbol being defined by the IDF. Lines 27 to 28 in 9c0fe89 Please read the docs https://mongoose.ws/documentation/#build-options
Line 357 is different both in 7.9 stable and git head. What is your release ?
We moved Please follow the tutorials https://mongoose.ws/documentation/tutorials/esp32/device-dashboard/
Not from us, please get your code from the repo as the tutorials indicate If you have a specific issue, open an issue, and fill the template. However, we are not currently supporting PlatformIO, so we'll need the IDF version you are using. |
Beta Was this translation helpful? Give feedback.
Yes, Github does that for us every time we introduce a new line of code, all our examples build.
VSCode is just an editor, but PlatformIO is probably a different architecture and we don't have working examples for that, we don't even know if Mongoose will work on that.
Where did you get that from ? Your first choice is not a valid Mongoose platform but an…