From 0c176c6c3fed1fb438799e9a4e4e7b53f5b14b0b Mon Sep 17 00:00:00 2001 From: arovak Date: Fri, 29 May 2020 14:35:17 +0200 Subject: [PATCH] Add Ethernet.h for WiFiSpi compatibility --- include/espspi/Ethernet.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/espspi/Ethernet.h diff --git a/include/espspi/Ethernet.h b/include/espspi/Ethernet.h new file mode 100644 index 00000000..61fc6f61 --- /dev/null +++ b/include/espspi/Ethernet.h @@ -0,0 +1,9 @@ +#ifndef WIFISPI_H +#define WIFISPI_H + +// Glue between STM32_EthernetWebserver and WiFiSpi library +#include +using EthernetClient = WiFiSpiClient; // Alias +using EthernetServer = WiFiSpiServer; + +#endif \ No newline at end of file