OS – Windows 10 x64 22H2
Arduino IDE V 2.3.2
I have recently purchased a ESP32C6 to replace the ESP-WROOM-32 I normally use.
With the standard library for the 32-WROOM I use the expressif board library which works and compiles correctly with “#include <HTTPSServer.hpp>”.
I have downloaded the espressif ESP32 library which is compatible with this chip from version 3.0 onwards. However when I compile I get
Adruinolibrariesesp32_https_server-mastersrc/HTTPSServer.hpp:11:10: fatal error: openssl/ssl.h: No such file or directory
11 | #include “openssl/ssl.h”
| ^~~~~~~~~~~~~~~
compilation terminated.
exit status 1
Compilation error: exit status 1
I dont get any issues with openssl on the wroom chip before the v3 version so its almost like its not present in version 3.
It seems this openssl library is missing from this Board, is this something I can add? I have tried to include the openssl library from GITHUB https://github.com/openssl/openssl but get 100’s of errors at compile and I am not sure its in the right location.
Any help would be appreciated, thanks 🙂
- Have tried to install openssl into the board library
- Have tried all versions of the esp library for ESPC6
1