forked from khoih-prog/AsyncHTTPRequest_Generic
### Releases v1.7.1 1. Add example [AsyncHTTPRequest_ESP_Multi](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/tree/master/examples/AsyncHTTPRequest_ESP_Multi) to demo connection to multiple addresses. 2. Update `Packages' Patches`
53 lines
3.4 KiB
C
53 lines
3.4 KiB
C
/****************************************************************************************************************************
|
|
AsyncHTTPRequest_Generic.h - Dead simple AsyncHTTPRequest for ESP8266, ESP32 and currently STM32 with built-in LAN8742A Ethernet
|
|
|
|
For ESP8266, ESP32 and STM32 with built-in LAN8742A Ethernet (Nucleo-144, DISCOVERY, etc)
|
|
|
|
AsyncHTTPRequest_STM32 is a library for the ESP8266, ESP32 and currently STM32 run built-in Ethernet WebServer
|
|
|
|
Based on and modified from asyncHTTPrequest Library (https://github.com/boblemaire/asyncHTTPrequest)
|
|
|
|
Built by Khoi Hoang https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
|
Licensed under MIT license
|
|
|
|
Copyright (C) <2018> <Bob Lemaire, IoTaWatt, Inc.>
|
|
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License
|
|
as published bythe Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
Version: 1.7.1
|
|
|
|
Version Modified By Date Comments
|
|
------- ----------- ---------- -----------
|
|
1.0.0 K Hoang 14/09/2020 Initial coding to add support to STM32 using built-in Ethernet (Nucleo-144, DISCOVERY, etc).
|
|
1.0.1 K Hoang 09/10/2020 Restore cpp code besides Impl.h code.
|
|
1.0.2 K Hoang 09/11/2020 Make Mutex Lock and delete more reliable and error-proof
|
|
1.1.0 K Hoang 23/12/2020 Add HTTP PUT, PATCH, DELETE and HEAD methods
|
|
1.1.1 K Hoang 24/12/2020 Prevent crash if request and/or method not correct.
|
|
1.1.2 K Hoang 11/02/2021 Rename _lock and _unlock to avoid conflict with AsyncWebServer library
|
|
1.1.3 K Hoang 25/02/2021 Fix non-persistent Connection header bug
|
|
1.1.4 K Hoang 21/03/2021 Fix `library.properties` dependency
|
|
1.1.5 K Hoang 22/03/2021 Fix dependency on STM32AsyncTCP Library
|
|
1.2.0 K Hoang 11/04/2021 Add support to LAN8720 using STM32F4 or STM32F7
|
|
1.3.0 K Hoang 09/07/2021 Add support to WT32_ETH01 (ESP32 + LAN8720) boards
|
|
1.3.1 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
|
|
1.4.0 K Hoang 23/11/2021 Fix crashing bug when request a non-existing IP
|
|
1.4.1 K Hoang 29/11/2021 Auto detect ESP32 core version and improve connection time for WT32_ETH01
|
|
1.5.0 K Hoang 30/12/2021 Fix `multiple-definitions` linker error
|
|
1.6.0 K Hoang 23/01/2022 Enable compatibility with old code to include only AsyncHTTPRequest_Generic.h
|
|
1.7.0 K Hoang 10/02/2022 Add support to new ESP32-S3. Add LittleFS support to ESP32-C3. Use core LittleFS
|
|
1.7.1 K Hoang 25/02/2022 Add example AsyncHTTPRequest_ESP_Multi to demo connection to multiple addresses
|
|
*****************************************************************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#ifndef ASYNC_HTTP_REQUEST_GENERIC_H
|
|
#define ASYNC_HTTP_REQUEST_GENERIC_H
|
|
|
|
#include "AsyncHTTPRequest_Generic.hpp"
|
|
#include "AsyncHTTPRequest_Impl_Generic.h"
|
|
|
|
#endif // ASYNC_HTTP_REQUEST_GENERIC_H
|