Richard Spencer
Richard Spencer
I don't really have an answer for supported version, other than I believe DMD is the "reference implementation", and the latest release version of this compiler is what we should...
A little late with this, but I have had some success adapting the Portenta H7 code from the WebSockets2_Generic library to use with GIGA R1 WiFi. Since no other websocket...
Hi @AfdulRohmat I have successfully compiled your code above on my machine, so could I ask if you are definitely using my fork of Websockets2_Generic instead of the upstream (and...
Hi @AfdulRohmat In reply, yes you will need to perform a manual install. This involves going to https://github.com/cpp-tutor/WebSockets2_Generic and choosing "Code --> Download ZIP". Then in Arduino IDE 2.x choose...
Hi @AfdulRohmat Thank you for your feedback, I'm glad that you got your code compiling. I must confess that I didn't either flash or run your code, but one thing...
Hi @markieboy223,I'm afraid I don't have any ideas about how to solve your specific problem. My fork simply adapts the Portenta H7 code to GIGA, which works for my own...
Hi @markieboy223, Apologies for the late reply. The only answer I have is to declare and define SocketHandler entirely within the sketch, in case you haven't done this already. This...
Just to clarify, the C++ code in the "modules" directory (which uses `import`) is not (yet) compatible with g++. Please use Clang under Linux with the `-fmodules` flag. All of...
Please try adding: -stdlib=libc++
Hi Thomas, I notice that you are using quite an old version of clang, as I recall "import std;" didn't work for me until clang 14.Also please be aware that...