forked from khoih-prog/AsyncHTTPRequest_Generic
Removed STM32 support to fix compiling on arm deployment machine in the basement
This commit is contained in:
18
library.json
18
library.json
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name":"AsyncHTTPRequest_Generic",
|
"name":"AsyncHTTPRequest_Generic",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description":"Simple Async HTTP Request library, supporting GET and POST, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, AsyncTCP_STM32, etc.. for ESP32, ESP8266 and currently STM32 with built-in LAN8742A Ethernet.",
|
"description":"Simple Async HTTP Request library, supporting GET and POST, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, etc... for ESP32, ESP8266.",
|
||||||
"keywords":"async,tcp,http,ESP8266,ESP32,ESPAsyncTCP,AsyncTCP,stm32,ethernet,wifi,lan8742a",
|
"keywords":"async,tcp,http,ESP8266,ESP32,ESPAsyncTCP,AsyncTCP,ethernet,wifi,lan8742a",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Bob Lemaire",
|
"name": "Bob Lemaire",
|
||||||
@ -13,7 +13,7 @@
|
|||||||
"url": "https://github.com/khoih-prog",
|
"url": "https://github.com/khoih-prog",
|
||||||
"email": "khoih.prog@gmail.com",
|
"email": "khoih.prog@gmail.com",
|
||||||
"maintainer": true
|
"maintainer": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"repository":
|
"repository":
|
||||||
{
|
{
|
||||||
@ -36,18 +36,6 @@
|
|||||||
"name": "ESPAsync_WiFiManager",
|
"name": "ESPAsync_WiFiManager",
|
||||||
"platforms": ["espressif8266", "espressif32"]
|
"platforms": ["espressif8266", "espressif32"]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "STM32duino LwIP",
|
|
||||||
"platforms": "ststm32"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "STM32duino STM32Ethernet",
|
|
||||||
"platforms": "ststm32"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "STM32 AsyncTCP",
|
|
||||||
"platforms": "ststm32"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "https://github.com/0xFEEDC0DE64/optional.git",
|
"name": "https://github.com/0xFEEDC0DE64/optional.git",
|
||||||
"platforms": ["espressif8266", "espressif32"]
|
"platforms": ["espressif8266", "espressif32"]
|
||||||
|
@ -3,10 +3,10 @@ version=1.0.0
|
|||||||
author=Bob Lemaire,Khoi Hoang
|
author=Bob Lemaire,Khoi Hoang
|
||||||
maintainer=Khoi Hoang <khoih.prog@gmail.com>
|
maintainer=Khoi Hoang <khoih.prog@gmail.com>
|
||||||
license=MIT
|
license=MIT
|
||||||
sentence=Simple Async HTTP Request library, supporting GET and POST, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, AsyncTCP_STM32, etc.. for ESP32, ESP8266 and currently STM32 with built-in LAN8742A Ethernet.
|
sentence=Simple Async HTTP Request library, supporting GET and POST, on top of AsyncTCP libraries, such as AsyncTCP, ESPAsyncTCP, etc.. for ESP32, ESP8266
|
||||||
paragraph=This AsyncHTTPRequest_Generic Library, supporting GET and POST, for ESP32, ESP8266 and STM32 with built-in LAN8742A Ethernet, such as Nucleo-144 F767ZI, etc.
|
paragraph=This AsyncHTTPRequest_Generic Library, supporting GET and POST, for ESP32, ESP8266.
|
||||||
category=Communication,AsyncTCP,AsyncHTTP
|
category=Communication,AsyncTCP,AsyncHTTP
|
||||||
url=https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
url=https://github.com/khoih-prog/AsyncHTTPRequest_Generic
|
||||||
architectures=*
|
architectures=*
|
||||||
depends=AsyncTCP,ESP AsyncTCP,ESPAsync_WiFiManager,STM32duino LwIP,STM32duino STM32Ethernet,STM32 AsyncTCP
|
depends=AsyncTCP,ESP AsyncTCP,ESPAsync_WiFiManager
|
||||||
includes=AsyncHTTPRequest_Generic.h
|
includes=AsyncHTTPRequest_Generic.h
|
||||||
|
@ -15,13 +15,11 @@
|
|||||||
; ESP32
|
; ESP32
|
||||||
; SAMD
|
; SAMD
|
||||||
; NRF52
|
; NRF52
|
||||||
; STM32
|
|
||||||
; ============================================================
|
; ============================================================
|
||||||
;default_envs = ESP8266
|
;default_envs = ESP8266
|
||||||
default_envs = ESP32
|
default_envs = ESP32
|
||||||
;default_envs = SAMD
|
;default_envs = SAMD
|
||||||
;default_envs = NRF52
|
;default_envs = NRF52
|
||||||
;default_envs = STM32
|
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
; ============================================================
|
; ============================================================
|
||||||
@ -33,22 +31,16 @@ upload_speed = 921600
|
|||||||
;monitor_speed = 9600
|
;monitor_speed = 9600
|
||||||
;monitor_port = COM11
|
;monitor_port = COM11
|
||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
; PlatformIO 4.x
|
; PlatformIO 4.x
|
||||||
AsyncTCP@~1.1.1
|
AsyncTCP@~1.1.1
|
||||||
ESPAsyncTCP@~1.2.2
|
ESPAsyncTCP@~1.2.2
|
||||||
STM32AsyncTCP@~1.0.0
|
|
||||||
STM32duino LwIP@~2.1.2
|
|
||||||
STM32duino STM32Ethernet@~1.2.0
|
|
||||||
ESPAsync_WiFiManager@~1.1.2
|
ESPAsync_WiFiManager@~1.1.2
|
||||||
; PlatformIO 5.x
|
; PlatformIO 5.x
|
||||||
; me-no-dev/AsyncTCP@~1.1.1
|
; me-no-dev/AsyncTCP@~1.1.1
|
||||||
; me-no-dev/ESPAsyncTCP@~1.2.2
|
; me-no-dev/ESPAsyncTCP@~1.2.2
|
||||||
; philbowles/STM32AsyncTCP@~1.0.0
|
|
||||||
; stm32duino/STM32duino LwIP@~2.1.2
|
|
||||||
; stm32duino/STM32duino STM32Ethernet@~1.2.0
|
|
||||||
; khoih-prog/ESPAsync_WiFiManager@~1.1.2
|
; khoih-prog/ESPAsync_WiFiManager@~1.1.2
|
||||||
|
|
||||||
build_flags =
|
build_flags =
|
||||||
; set your debug output (default=Serial)
|
; set your debug output (default=Serial)
|
||||||
; -D DEBUG_ESP_PORT=Serial
|
; -D DEBUG_ESP_PORT=Serial
|
||||||
@ -234,115 +226,3 @@ board = feather52840
|
|||||||
;board = mdbt50qrx
|
;board = mdbt50qrx
|
||||||
;board = ninab302
|
;board = ninab302
|
||||||
;board = ninab112
|
;board = ninab112
|
||||||
|
|
||||||
[env:STM32]
|
|
||||||
platform = ststm32
|
|
||||||
framework = arduino
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Choose your board by uncommenting one of the following lines
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Board configuration Nucleo-144
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
;board = nucleo_f207zg
|
|
||||||
;board = nucleo_f429zi
|
|
||||||
;board = nucleo_f746zg
|
|
||||||
;board = nucleo_f756zg
|
|
||||||
;board = nucleo_f767zi
|
|
||||||
;board = nucleo_h743zi
|
|
||||||
;board = nucleo_l496zg
|
|
||||||
;board = nucleo_l496zg-p
|
|
||||||
;board = nucleo_l4r5zi
|
|
||||||
;board = nucleo_l4r5zi-p
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Board configuration Nucleo-64
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
;board = nucleo_f030r8
|
|
||||||
;board = nucleo_f072rb
|
|
||||||
|
|
||||||
;board = nucleo_f091rc
|
|
||||||
;board = nucleo_f103rb
|
|
||||||
;board = nucleo_f302r8
|
|
||||||
;board = nucleo_f303re
|
|
||||||
;board = nucleo_f401re
|
|
||||||
;board = nucleo_f411re
|
|
||||||
;board = nucleo_f446re
|
|
||||||
;board = nucleo_g071rb
|
|
||||||
;board = nucleo_g431rb
|
|
||||||
;board = nucleo_g474re
|
|
||||||
;board = nucleo_l053r8
|
|
||||||
;board = nucleo_l073rz
|
|
||||||
;board = nucleo_l152re
|
|
||||||
;board = nucleo_l433rc_p
|
|
||||||
;board = nucleo_l452re
|
|
||||||
;board = nucleo_l452re-p
|
|
||||||
;board = nucleo_l476rg
|
|
||||||
;board = pnucleo_wb55rg
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Board configuration Nucleo-32
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
;board = nucleo_f031k6
|
|
||||||
;board = nucleo_l031k6
|
|
||||||
;board = nucleo_l412kb
|
|
||||||
;board = nucleo_l432lc
|
|
||||||
;board = nucleo_f303k8
|
|
||||||
;board = nucleo_g431kb
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Board configuration Discovery Boards
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
;board = disco_f030r8
|
|
||||||
;board = disco_f072rb
|
|
||||||
;board = disco_f030r8
|
|
||||||
;board = disco_f100rb
|
|
||||||
;board = disco_f407vg
|
|
||||||
;board = disco_f413zh
|
|
||||||
;board = disco_f746ng
|
|
||||||
;board = disco_g0316
|
|
||||||
;board = disco_l475vg_iot
|
|
||||||
;board = disco_f072cz-lrwan1
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Board configuration STM32MP1 Boards
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
;board = stm32mp157a-dk1
|
|
||||||
;board = stm32mp157c-dk2
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Board configuration Generic Boards
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
;board = bluepill_f103c6
|
|
||||||
;board = bluepill_f103c8
|
|
||||||
;board = blackpill_f103c8
|
|
||||||
;board = stm32f103cx
|
|
||||||
;board = stm32f103rx
|
|
||||||
;board = stm32f103tx
|
|
||||||
;board = stm32f103vx
|
|
||||||
;board = stm32f103zx
|
|
||||||
;board = stm32f103zet6
|
|
||||||
;board = maplemini_f103cb
|
|
||||||
;board = blackpill_f303cc
|
|
||||||
;board = black_f407ve
|
|
||||||
;board = black_f407vg
|
|
||||||
;board = black_f407ze
|
|
||||||
;board = black_f407zg
|
|
||||||
;board = blue_f407ve_mini
|
|
||||||
;board = blackpill_f401cc
|
|
||||||
;board = blackpill_f411ce
|
|
||||||
;board = coreboard_f401rc
|
|
||||||
;board = feather_f405
|
|
||||||
|
|
||||||
; ============================================================
|
|
||||||
; Board configuration Many more Boards to be filled
|
|
||||||
; ============================================================
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user