Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 9282426

Browse files
authored
v1.5.0 for WizNet WizFi360
### Releases v1.5.0 1. Add support to WizNet `WizFi360`, such as `WIZNET_WIZFI360_EVB_PICO` using `arduino-pico` core 2. Modify examples to Enable `IP MUX`
1 parent 94bbe56 commit 9282426

File tree

1 file changed

+159
-37
lines changed

1 file changed

+159
-37
lines changed

README.md

Lines changed: 159 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Donate to my libraries using BuyMeACoffee" style="height: 50px !important;width: 181px !important;" ></a>
1111
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00" style="height: 20px !important;width: 200px !important;" ></a>
1212

13+
1314
---
1415
---
1516

@@ -18,11 +19,13 @@
1819
* [Why do we need this ESP_AT_Lib library](#why-do-we-need-this-esp_at_lib-library)
1920
* [Features](#features)
2021
* [Currently Supported Boards](#currently-supported-boards)
22+
* [Currently Supported AT-command shields](#currently-supported-at-command-shields)
2123
* [Changelog](changelog.md)
2224
* [Prerequisites](#prerequisites)
2325
* [Important Notes about AT Firmwares](#important-notes-about-at-firmwares)
2426
* [1. Firmwares tested OK with ESP8266 AT shields](#1-firmwares-tested-ok-with-esp8266-at-shields)
2527
* [2. Firmwares tested OK with ESP32 AT shields](#2-firmwares-tested-ok-with-esp32-at-shields)
28+
* [3. Firmwares tested OK with WizFi360 AT shields](#3-firmwares-tested-ok-with-WizFi360-at-shields)
2629
* [Installation](#installation)
2730
* [Use Arduino Library Manager](#use-arduino-library-manager)
2831
* [Manual Install](#manual-install)
@@ -64,6 +67,7 @@
6467
* [Debug Terminal Output Samples](#debug-terminal-output-samples)
6568
* [1. HTTPGET on RASPBERRY_PI_PICO with ESP8266-AT shield](#1-httpget-on-raspberry_pi_pico-with-esp8266-at-shield)
6669
* [2. HTTPGET on MBED RASPBERRY_PI_PICO with ESP8266-AT shield](#2-httpget-on-mbed-raspberry_pi_pico-with-esp8266-at-shield)
70+
* [3. TCPServer on WIZNET_WIZFI360_EVB_PICO](#3-TCPServer-on-WIZNET_WIZFI360_EVB_PICO)
6771
* [Debug](#debug)
6872
* [Troubleshooting](#troubleshooting)
6973
* [Releases](#releases)
@@ -82,7 +86,7 @@
8286

8387
#### Features
8488

85-
This is an ESP8266/ESP32 wrapper library for Arduino providing an easy-to-use way to manipulate ESP8266/ESP32-AT shields.
89+
This is an WizFi360/ESP8266/ESP32 wrapper library for Arduino providing an easy-to-use way to manipulate WizFi360/ESP8266/ESP32-AT shields.
8690

8791
This library is based on, modified and improved from [ITEADLIB_Arduino_WeeESP8266](https://github.com/itead/ITEADLIB_Arduino_WeeESP8266)
8892

@@ -123,33 +127,60 @@ This [**ESP_AT_Lib** library](https://github.com/khoih-prog/ESP_AT_Lib) currentl
123127
- Generic Flight Controllers
124128
- Midatronics boards
125129

126-
7. **SIPEED_MAIX_DUINO** boards
130+
7. **SIPEED_MAIX_DUINO** boards
131+
132+
8. RP2040-based boards, such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040** using [**Earle Philhower's arduino-pico** core v1.4.0+](https://github.com/earlephilhower/arduino-pico) or [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed).
133+
134+
9. RP2040-based boards, such as **Nano_RP2040_Connect** using [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed).
127135

128-
8. RP2040-based boards, such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040** using [**Earle Philhower's arduino-pico** core v1.4.0+](https://github.com/earlephilhower/arduino-pico) or [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed).
136+
10. **WIZNET_WIZFI360_EVB_PICO** using [**Earle Philhower's arduino-pico** core](https://github.com/earlephilhower/arduino-pico)
129137

130-
9. RP2040-based boards, such as **Nano_RP2040_Connect** using [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed).
138+
139+
#### WIZNET_WIZFI360_EVB_PICO
140+
141+
<p align="center">
142+
<img src="https://github.com/khoih-prog/ESP_AT_Lib/raw/master/pics/WIZNET_WIZFI360_EVB_PICO.png">
143+
</p>
144+
145+
146+
---
147+
148+
#### Currently Supported AT-command shields
149+
150+
1. `ESP8266-AT-command` shield
151+
2. `ESP32-AT-command` shield
152+
3. `W600` and `WIS600-01S` AT-command shield
153+
4. `WizFi360` AT-command shield
154+
155+
#### WIZFI360
156+
157+
<p align="center">
158+
<img src="https://github.com/khoih-prog/ESP_AT_Lib/raw/master/pics/wizfi360-pa.png">
159+
</p>
131160

132161

133162
---
134163
---
135164

136165

137-
### Prerequisites
166+
## Prerequisites
138167

139-
1. [`Arduino IDE 1.8.19+` for Arduino](https://www.arduino.cc/en/Main/Software)
168+
1. [`Arduino IDE 1.8.19+` for Arduino](https://github.com/arduino/Arduino). [![GitHub release](https://img.shields.io/github/release/arduino/Arduino.svg)](https://github.com/arduino/Arduino/releases/latest)
140169
2. [`Arduino AVR core 1.8.6+`](https://github.com/arduino/ArduinoCore-avr) for Arduino (Use Arduino Board Manager) for AVR boards. [![GitHub release](https://img.shields.io/github/release/arduino/ArduinoCore-avr.svg)](https://github.com/arduino/ArduinoCore-avr/releases/latest)
141-
3. [`Arduino Core for STM32 v2.3.0+`](https://github.com/stm32duino/Arduino_Core_STM32) for STM32F/L/H/G/WB/MP1 boards (Nucleo-144 NUCLEO_F767ZI, Nucleo-64 NUCLEO_L053R8, etc.). [![GitHub release](https://img.shields.io/github/release/stm32duino/Arduino_Core_STM32.svg)](https://github.com/stm32duino/Arduino_Core_STM32/releases/latest)
142-
4. [`Teensy core 1.57+`](https://www.pjrc.com/teensy/td_download.html) for Teensy (4.1, 4.0, 3.6, 3.5, 3,2, 3.1, 3.0, LC) boards
170+
3. [`Arduino Core for STM32 v2.4.0+`](https://github.com/stm32duino/Arduino_Core_STM32) for STM32F/L/H/G/WB/MP1 boards (Nucleo-144 NUCLEO_F767ZI, Nucleo-64 NUCLEO_L053R8, etc.). [![GitHub release](https://img.shields.io/github/release/stm32duino/Arduino_Core_STM32.svg)](https://github.com/stm32duino/Arduino_Core_STM32/releases/latest)
171+
4. [`Teensy core v1.57+`](https://github.com/PaulStoffregen/cores) for Teensy 4.1. [![GitHub release](https://img.shields.io/github/release/PaulStoffregen/cores.svg)](https://github.com/PaulStoffregen/cores/releases/latest)
143172
5. [`Arduino SAM DUE core v1.6.12+`](https://github.com/arduino/ArduinoCore-sam) for SAM DUE ARM Cortex-M3 boards.
144173
6. [`Arduino SAMD core 1.8.13+`](https://github.com/arduino/ArduinoCore-samd) for SAMD ARM Cortex-M0+ boards. [![GitHub release](https://img.shields.io/github/release/arduino/ArduinoCore-samd.svg)](https://github.com/arduino/ArduinoCore-samd/releases/latest)
145174
7. [`Adafruit SAMD core 1.7.11+`](https://github.com/adafruit/ArduinoCore-samd) for SAMD ARM Cortex-M0+ and M4 boards (Nano 33 IoT, etc.). [![GitHub release](https://img.shields.io/github/release/adafruit/ArduinoCore-samd.svg)](https://github.com/adafruit/ArduinoCore-samd/releases/latest)
146175
8. [`Seeeduino SAMD core 1.8.3+`](https://github.com/Seeed-Studio/ArduinoCore-samd) for SAMD21/SAMD51 boards (XIAO M0, Wio Terminal, etc.). [![Latest release](https://img.shields.io/github/release/Seeed-Studio/ArduinoCore-samd.svg)](https://github.com/Seeed-Studio/ArduinoCore-samd/releases/latest/)
147-
9. [`Adafruit nRF52 v1.3.0+`](https://github.com/adafruit/Adafruit_nRF52_Arduino) for nRF52 boards such as Adafruit NRF52840_FEATHER, NRF52832_FEATHER, NRF52840_FEATHER_SENSE, NRF52840_ITSYBITSY, NRF52840_CIRCUITPLAY, NRF52840_CLUE, NRF52840_METRO, NRF52840_PCA10056, PARTICLE_XENON, **NINA_B302_ublox**, etc. [![GitHub release](https://img.shields.io/github/release/adafruit/Adafruit_nRF52_Arduino.svg)](https://github.com/adafruit/Adafruit_nRF52_Arduino/releases/latest)
148-
10. [`Earle Philhower's arduino-pico core v2.6.3+`](https://github.com/earlephilhower/arduino-pico) for RP2040-based boards such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, etc. [![GitHub release](https://img.shields.io/github/release/earlephilhower/arduino-pico.svg)](https://github.com/earlephilhower/arduino-pico/releases/latest)
149-
11. [`Arduino mbed_rp2040 core 3.4.1+`](https://github.com/arduino/ArduinoCore-mbed) for Arduino (Use Arduino Board Manager) RP2040-based boards, such as RASPBERRY_PI_PICO. [![GitHub release](https://img.shields.io/github/release/arduino/ArduinoCore-mbed.svg)](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
176+
9. [`Adafruit nRF52 v1.3.0`](https://github.com/adafruit/Adafruit_nRF52_Arduino) for nRF52 boards such as Adafruit NRF52840_FEATHER, NRF52832_FEATHER, NRF52840_FEATHER_SENSE, NRF52840_ITSYBITSY, NRF52840_CIRCUITPLAY, NRF52840_CLUE, NRF52840_METRO, NRF52840_PCA10056, PARTICLE_XENON, **NINA_B302_ublox**, etc. [![GitHub release](https://img.shields.io/github/release/adafruit/Adafruit_nRF52_Arduino.svg)](https://github.com/adafruit/Adafruit_nRF52_Arduino/releases/latest)
177+
10. [`Arduino mbed_rp2040 core 3.5.4+`](https://github.com/arduino/ArduinoCore-mbed) for Arduino RP2040-based boards, such as **Arduino Nano RP2040 Connect, RASPBERRY_PI_PICO, etc.**. [![GitHub release](https://img.shields.io/github/release/arduino/ArduinoCore-mbed.svg)](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
178+
11. [`Earle Philhower's arduino-pico core v2.7.1+`](https://github.com/earlephilhower/arduino-pico) for RP2040-based boards such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, etc. [![GitHub release](https://img.shields.io/github/release/earlephilhower/arduino-pico.svg)](https://github.com/earlephilhower/arduino-pico/releases/latest)
150179
12. [`Ai-Thinker AT Firmware v1.5.4`](AT_Firmwares/At_firmware_bin1.54.zip) or [`AT Firmware v1.7.4.0`](AT_Firmwares/AT_Firmware_bin_1.7.4.0.zip) for ESP8266-AT shields.
151180
13. [`AT version_2.1.0.0_dev`](AT_Firmwares/AT_version_2.1.0.0_dev.zip) for ESP32-AT shields.
152-
14. `AT version_1.1.4` for WIS600-01S and W600-AT WiFi shields.
181+
14. `AT version_1.1.4` for `WIS600-01S` and `W600-AT` WiFi shields
182+
15. `AT version:1.1.1.7` for `WizFi360` WiFi shields
183+
153184

154185
---
155186
---
@@ -197,7 +228,20 @@ This [**ESP_AT_Lib** library](https://github.com/khoih-prog/ESP_AT_Lib) currentl
197228

198229
See instructions at [AT Command Core](https://github.com/espressif/esp-at) and [ESP_AT_Get_Started](https://github.com/espressif/esp-at/blob/master/docs/en/get-started/ESP_AT_Get_Started.md)
199230

200-
3. Upload [`AT Firmware v1.7.4.0`](https://github.com/khoih-prog/ESP8266_AT_WebServer/blob/master/AT_Firmwares/AT_Firmware_bin_1.7.4.0.zip) bin files to correct locations as follows:
231+
232+
#### 3. Firmwares tested OK with WizFi360 AT shields
233+
234+
- [`AT version_2.1.0.0_dev`](https://github.com/khoih-prog/ESP8266_AT_WebServer/blob/master/AT_Firmwares/AT_version_2.1.0.0_dev.zip)
235+
236+
```cpp
237+
FW Version:AT version:1.1.1.7(May 4 2021 15:14:59)
238+
SDK version:3.2.0(a0ffff9f)
239+
compile time:May 4 2021 15:14:59
240+
```
241+
242+
---
243+
244+
4. Upload [`AT Firmware v1.7.4.0`](https://github.com/khoih-prog/ESP8266_AT_WebServer/blob/master/AT_Firmwares/AT_Firmware_bin_1.7.4.0.zip) bin files to correct locations as follows:
201245

202246
```
203247
# BOOT MODE
@@ -216,9 +260,10 @@ This [**ESP_AT_Lib** library](https://github.com/khoih-prog/ESP_AT_Lib) currentl
216260
blank.bin 0xfe000 & 0x1fe000
217261
```
218262
219-
4. Test before using different AT-Firmware Version at your own risks. Just use any simple example to verify if the AT-firmware is OK.
220-
5. Compatible AT-Firmare version will be updated. Check for all supported AT Firmwares and download them from [AT_Firmwares](https://github.com/khoih-prog/ESP8266_AT_WebServer/tree/master/AT_Firmwares).
221-
6. Support to ESP32-AT-command shields will be added by using new library [ESP_AT_Lib](https://github.com/khoih-prog/ESP_AT_Lib) to replace [Blynk's BlynkESP8266_Lib](https://github.com/blynkkk/blynk-library/releases/Blynk_Release_v0.6.1.zip).
263+
264+
5. Test before using different AT-Firmware Version at your own risks. Just use any simple example to verify if the AT-firmware is OK.
265+
6. Compatible AT-Firmare version will be updated. Check for all supported AT Firmwares and download them from [AT_Firmwares](https://github.com/khoih-prog/ESP8266_AT_WebServer/tree/master/AT_Firmwares).
266+
7. Support to ESP32-AT-command shields will be added by using new library [ESP_AT_Lib](https://github.com/khoih-prog/ESP_AT_Lib) to replace [Blynk's BlynkESP8266_Lib](https://github.com/blynkkk/blynk-library/releases/Blynk_Release_v0.6.1.zip).
222267
223268
---
224269
---
@@ -662,13 +707,14 @@ ESP8266 wifi(&Serial1);
662707
663708
The connection should be like these:
664709
665-
```
666-
ESP8266_TX->RX1(D19)
667-
ESP8266_RX->TX1(D18)
668-
ESP8266_CH_PD->3.3V
669-
ESP8266_VCC->3.3V
670-
ESP8266_GND->GND
671-
```
710+
711+
|ESP8266|<--->|MEGA, SAM DUE|
712+
|:-:|:-:|:-:|
713+
|TX|<--->|RX1(D19)|
714+
|RX|<--->|TX1(D18)|
715+
|CH_PD|<--->|3.3V|
716+
|VCC|<--->|3.3V|
717+
|GND|<--->|GND|
672718
673719
---
674720
@@ -690,7 +736,7 @@ The `SERIAL_TX_BUFFER_SIZE` and `SERIAL_RX_BUFFER_SIZE` are already redefined to
690736
#define SERIAL_RX_BUFFER_SIZE 256
691737
#endif
692738
#else
693-
#if defined(SERIAL_TX_BUFFER_SIZE)
739+
#if defined(SERIAL_TX_BUFFER_SIZE)
694740
#undef SERIAL_TX_BUFFER_SIZE
695741
#define SERIAL_TX_BUFFER_SIZE 2048
696742
#endif
@@ -719,8 +765,13 @@ The `SERIAL_TX_BUFFER_SIZE` and `SERIAL_RX_BUFFER_SIZE` are already redefined to
719765

720766
#### Example [TCPServer](examples/TCPServer)
721767

722-
https://github.com/khoih-prog/ESP_AT_Lib/blob/df278b2ef5ee1c39fc99ce8bde6721cb2409009a/examples/TCPServer/TCPServer.ino#L31-L407
768+
#### File [TCPServer.ino](examples/TCPServer/TCPServer.ino)
769+
770+
https://github.com/khoih-prog/ESP_AT_Lib/blob/94bbe56f0524a17d61d6c688f63a1ad81c1c34b3/examples/TCPServer/TCPServer.ino#L31-L160
723771

772+
#### File [defines.h](examples/TCPServer/defines.h)
773+
774+
https://github.com/khoih-prog/ESP_AT_Lib/blob/94bbe56f0524a17d61d6c688f63a1ad81c1c34b3/examples/TCPServer/defines.h#L12-L420
724775

725776
---
726777
---
@@ -729,12 +780,12 @@ https://github.com/khoih-prog/ESP_AT_Lib/blob/df278b2ef5ee1c39fc99ce8bde6721cb24
729780

730781
#### 1. HTTPGET on RASPBERRY_PI_PICO with ESP8266-AT shield
731782

732-
This is the terminal output when running [HTTPGET](examples/HTTPGET) example on **RASPBERRY_PI_PICO with ESP8266-AT shield**, using [Earle Philhower's arduino-pico core](https://github.com/earlephilhower/arduino-pico)
783+
This is the terminal output when running [HTTPGET](examples/HTTPGET) example on **RASPBERRY_PI_PICO with ESP8266-AT shield**, using [arduino-pico core](https://github.com/earlephilhower/arduino-pico)
733784

734785

735786
```cpp
736787
Start HTTPGET on RASPBERRY_PI_PICO
737-
ESP_AT_Lib v1.4.1
788+
ESP_AT_Lib v1.5.0
738789
FW Version:AT+GMR
739790
AT version:1.7.4.0(May 11 2020 19:13:04)
740791
SDK version:3.0.4(9532ceb)
@@ -797,7 +848,7 @@ This is the terminal output when running [HTTPGET](examples/HTTPGET) example on
797848
798849
```cpp
799850
Start HTTPGET on MBED RASPBERRY_PI_PICO
800-
ESP_AT_Lib v1.4.1
851+
ESP_AT_Lib v1.5.0
801852
FW Version:AT version:1.7.4.0(May 11 2020 19:13:04)
802853
SDK version:3.0.4(9532ceb)
803854
compile time:May 27 2020 10:12:17
@@ -857,7 +908,76 @@ Accept-Ranges: bytes
857908
858909
859910
============================================================
911+
```
912+
913+
914+
---
860915

916+
#### 3. TCPServer on WIZNET_WIZFI360_EVB_PICO
917+
918+
This is the terminal output when running [TCPServer](examples/TCPServer) example on **WIZNET_WIZFI360_EVB_PICO**, using [arduino-pico core](https://github.com/earlephilhower/arduino-pico)
919+
920+
921+
```cpp
922+
Start TCPServer on WIZNET_WIZFI360_EVB_PICO
923+
FW Version:AT+GMR
924+
AT version:1.1.1.7(May 4 2021 15:14:59)
925+
SDK version:3.2.0(a0ffff9f)
926+
compile time:May 4 2021 15:14:59
927+
AT+CWMODE?
928+
Set AP/STA Mode OK
929+
AT+CWJAP_DEF="
930+
Connect to WiFi OK
931+
IP: AT+CIFSR
932+
+CIFSR:APIP,"192.168.100.1"
933+
+CIFSR:APMAC,"02:08:dc:6d:9c:f0"
934+
+CIFSR:STAIP,"192.168.2.125"
935+
+CIFSR:STAMAC,"00:08:dc:6d:9c:f0"
936+
AT+CIPMUX=
937+
enableMUX OK
938+
AT+CIPSERVER=1,
939+
Start TCP server OK
940+
AT+CIPSTO=
941+
Set TCP server timeout 10 seconds
942+
Done
943+
Status:[AT+CIPSTATUS
944+
STATUS:3
945+
+CIPSTATUS:0,"TCP","192.168.2.30",34422,80,1
946+
+CIPSTATUS:1,"UDP","192.168.2.30",5416,56469,0]
947+
Received from :0
948+
[GET / HTTP/1.1
949+
Host: 192.168.2.125
950+
Connection: keep-alive
951+
Cache-Control: max-age=0
952+
DNT: 1
953+
Upgrade-Insecure-Requests: 1
954+
Use]
955+
AT+CIPSEND=
956+
Send back OK
957+
AT+CIPCLOSE=
958+
Release TCP 0 OK
959+
Status:[AT+CIPSTATUS
960+
STATUS:3
961+
+CIPSTATUS:1,"UDP","192.168.2.30",5416,56469,0]
962+
Status:[AT+CIPSTATUS
963+
STATUS:3
964+
+CIPSTATUS:0,"TCP","192.168.2.30",34578,80,1
965+
+CIPSTATUS:1,"UDP","192.168.2.30",5416,56469,0]
966+
Received from :0
967+
[GET / HTTP/1.1
968+
Host: 192.168.2.125
969+
Connection: keep-alive
970+
Cache-Control: max-age=0
971+
DNT: 1
972+
Upgrade-Insecure-Requests: 1
973+
Use]
974+
AT+CIPSEND=
975+
Send back OK
976+
AT+CIPCLOSE=
977+
Release TCP 0 OK
978+
Status:[AT+CIPSTATUS
979+
STATUS:3
980+
+CIPSTATUS:1,"UDP","192.168.2.30",5416,56469,0]
861981
```
862982
863983
---
@@ -880,9 +1000,9 @@ Debug is disabled by default on Serial. To enable, add at the beginning of sketc
8801000
8811001
### Troubleshooting
8821002
883-
If you get compilation errors, more often than not, you may need to install a newer version of the board's core, `ESP8266/ESP32-AT shield` AT-command or this library version.
1003+
If you get compilation errors, more often than not, you may need to install a newer version of the board's core, `WizFi360/ESP8266/ESP32-AT shield` AT-command or this library version.
8841004
885-
Sometimes, the library will only work if you update the `ESP8266/ESP32-AT shield` core to the newer or older version because some function compatibility.
1005+
Sometimes, the library will only work if you update the `WizFi360/ESP8266/ESP32-AT shield` core to the newer or older version because some function compatibility.
8861006
8871007
---
8881008
---
@@ -903,20 +1023,22 @@ Submit issues to: [ESP_AT_Lib issues](https://github.com/khoih-prog/ESP_AT_Lib/i
9031023
9041024
### DONE
9051025
906-
1. Add ESP32-AT support
1026+
1. Add `ESP32-AT` support
9071027
2. Replace deprecated AT commands
9081028
3. Add debug output with debug levels
9091029
4. Increase TX/RX Hardware Serial Buffer size
9101030
5. Test OK with supported boards, running Blynk, Config Portal
911-
6. Add support to RP2040-based boards such as RASPBERRY_PI_PICO, using [Earle Philhower's arduino-pico core](https://github.com/earlephilhower/arduino-pico)
912-
7. Add support to SIPEED_MAIX_DUINO
1031+
6. Add support to `RP2040-based` boards such as `RASPBERRY_PI_PICO`, using [arduino-pico core](https://github.com/earlephilhower/arduino-pico)
1032+
7. Add support to `SIPEED_MAIX_DUINO`
9131033
8. Add Table-of-Contents
9141034
9. Add Version String
915-
10. Add support to RP2040-based boards, such as **RASPBERRY_PI_PICO boards** using [Earle Philhower's arduino-pico core](https://github.com/earlephilhower/arduino-pico)
916-
11. Add support to RP2040-based boards, such as **RASPBERRY_PI_PICO boards** using [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed)
917-
12. Add support to RP2040-based boards, such as **Nano_RP2040_Connect** using [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed).
918-
13. Add support to Adafruit nRF52 core v0.22.0+
1035+
10. Add support to `RP2040-based` boards, such as **RASPBERRY_PI_PICO boards** using [arduino-pico core](https://github.com/earlephilhower/arduino-pico)
1036+
11. Add support to `RP2040-based` boards, such as **RASPBERRY_PI_PICO boards** using [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed)
1037+
12. Add support to `RP2040-based` boards, such as **Nano_RP2040_Connect** using [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed).
1038+
13. Add support to `Adafruit nRF52` core v0.22.0+
9191039
14. Add astyle using `allman` style. Restyle the library
1040+
15. Add support to WizNet `WizFi360`, such as `WIZNET_WIZFI360_EVB_PICO` using [arduino-pico core](https://github.com/earlephilhower/arduino-pico)
1041+
9201042
9211043
---
9221044
---

0 commit comments

Comments
 (0)