We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4138937 + f4fb7a7 commit f2b8a99Copy full SHA for f2b8a99
2 files changed
library.json
@@ -39,7 +39,10 @@
39
},
40
{
41
"name": "Hash",
42
- "platforms": "espressif8266"
+ "platforms": [
43
+ "espressif8266",
44
+ "raspberrypi"
45
+ ]
46
47
48
"owner": "ayushsharma82",
src/AsyncWebSocket.h
@@ -36,7 +36,7 @@
36
#include <list>
37
#include <memory>
38
-#ifdef ESP8266
+#if defined(ESP8266) || defined(TARGET_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2040) || defined(PICO_RP2350)
#include <Hash.h>
#ifdef CRYPTO_HASH_h // include Hash.h from espressif framework if the first include was from the crypto library
#include <../src/Hash.h>
0 commit comments