From c2598c6f2fc5d9a8a961058f15d2e7f6c1b6e15b Mon Sep 17 00:00:00 2001 From: 0xFEEDC0DE64 Date: Sun, 22 Nov 2020 18:33:06 +0100 Subject: [PATCH] Removed STM32 support to fix compiling on arm deployment machine in the basement --- library.json | 18 +----- library.properties | 6 +- platformio/platformio.ini | 126 +------------------------------------- 3 files changed, 9 insertions(+), 141 deletions(-) diff --git a/library.json b/library.json index 8aed44a..69abcbb 100644 --- a/library.json +++ b/library.json @@ -1,8 +1,8 @@ { "name":"AsyncHTTPRequest_Generic", "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.", - "keywords":"async,tcp,http,ESP8266,ESP32,ESPAsyncTCP,AsyncTCP,stm32,ethernet,wifi,lan8742a", + "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,ethernet,wifi,lan8742a", "authors": [ { "name": "Bob Lemaire", @@ -13,7 +13,7 @@ "url": "https://github.com/khoih-prog", "email": "khoih.prog@gmail.com", "maintainer": true - } + } ], "repository": { @@ -36,18 +36,6 @@ "name": "ESPAsync_WiFiManager", "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", "platforms": ["espressif8266", "espressif32"] diff --git a/library.properties b/library.properties index a9091bf..e4597fb 100644 --- a/library.properties +++ b/library.properties @@ -3,10 +3,10 @@ version=1.0.0 author=Bob Lemaire,Khoi Hoang maintainer=Khoi Hoang 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. -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. +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. category=Communication,AsyncTCP,AsyncHTTP url=https://github.com/khoih-prog/AsyncHTTPRequest_Generic architectures=* -depends=AsyncTCP,ESP AsyncTCP,ESPAsync_WiFiManager,STM32duino LwIP,STM32duino STM32Ethernet,STM32 AsyncTCP +depends=AsyncTCP,ESP AsyncTCP,ESPAsync_WiFiManager includes=AsyncHTTPRequest_Generic.h diff --git a/platformio/platformio.ini b/platformio/platformio.ini index 6598b5f..717fa59 100644 --- a/platformio/platformio.ini +++ b/platformio/platformio.ini @@ -15,13 +15,11 @@ ; ESP32 ; SAMD ; NRF52 -; STM32 ; ============================================================ ;default_envs = ESP8266 default_envs = ESP32 ;default_envs = SAMD ;default_envs = NRF52 -;default_envs = STM32 [env] ; ============================================================ @@ -33,22 +31,16 @@ upload_speed = 921600 ;monitor_speed = 9600 ;monitor_port = COM11 -lib_deps = +lib_deps = ; PlatformIO 4.x AsyncTCP@~1.1.1 ESPAsyncTCP@~1.2.2 - STM32AsyncTCP@~1.0.0 - STM32duino LwIP@~2.1.2 - STM32duino STM32Ethernet@~1.2.0 ESPAsync_WiFiManager@~1.1.2 -; PlatformIO 5.x +; PlatformIO 5.x ; me-no-dev/AsyncTCP@~1.1.1 ; 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 - + build_flags = ; set your debug output (default=Serial) ; -D DEBUG_ESP_PORT=Serial @@ -234,115 +226,3 @@ board = feather52840 ;board = mdbt50qrx ;board = ninab302 ;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 -; ============================================================ -