v1.11.0 for ESP32 and LwIP ENC28J60 Ethernet

### Releases v1.11.0

1. Add support to ESP32 boards using LwIP ENC28J60 Ethernet
2. Use `allman astyle` and add `utils`. Restyle the library
This commit is contained in:
Khoi Hoang
2022-11-28 23:19:15 -05:00
committed by GitHub
parent 4b56b009c7
commit 9647523b2a
3 changed files with 577 additions and 3 deletions

View File

@@ -12,15 +12,15 @@
// To demo how to include files in multi-file Projects
#if !( defined(ESP8266) || defined(ESP32) || \
#if !( defined(ESP8266) || defined(ESP32) || \
( defined(STM32F0) || defined(STM32F1) || defined(STM32F2) || defined(STM32F3) ||defined(STM32F4) || defined(STM32F7) || \
defined(STM32L0) || defined(STM32L1) || defined(STM32L4) || defined(STM32H7) ||defined(STM32G0) || defined(STM32G4) || \
defined(STM32WB) || defined(STM32MP1) ) )
#error This code is intended to run on the ESP8266, ESP32 or STM32 platform! Please check your Tools->Board setting.
#endif
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.10.2"
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1010002
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN_TARGET "AsyncHTTPRequest_Generic v1.11.0"
#define ASYNC_HTTP_REQUEST_GENERIC_VERSION_MIN 1011000
#include "multiFileProject.h"