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

Commit

Permalink
v1.7.1 to use Ethernet_Generic library
Browse files Browse the repository at this point in the history
### Releases v1.7.1

1. Use new [Ethernet_Generic library](https://github.com/khoih-prog/Ethernet_Generic) as default for W5x00.
2. Support SPI2 for ESP32
3. Add support to SPI1 for RP2040 using [arduino-pico core](https://github.com/earlephilhower/arduino-pico)
4. Use new function `waitForLink()` for Teensy 4.1 QNEthernet library v0.14.0+
5. Rewrite all the examples to support those new features
6. Update `Packages' Patches`
  • Loading branch information
khoih-prog committed Apr 11, 2022
1 parent d498f14 commit 78ff2db
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ MySQL_Query *query_mem;
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Basic_Insert_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ MySQL_Query sql_query = MySQL_Query(&conn);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Basic_Select_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ char *dtostrf(double val, signed char width, unsigned char prec, char *sout)
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Complex_Insert_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ MySQL_Connection conn((Client *)&client);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Complex_Select_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ MySQL_Connection conn((Client *)&client);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Connect_Default_Database_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ MySQL_Query query = MySQL_Query(&conn);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Connect_Disconnect_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ MySQL_Connection conn((Client *)&client);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Connect_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ MySQL_Connection conn((Client *)&client);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Query_Progmem_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ MySQL_Connection conn((Client *)&client);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Query_Results_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ MySQL_Query query = MySQL_Query(&conn);
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

MYSQL_DISPLAY1("\nStarting Reboot_WT32_ETH01 on", BOARD_NAME);
MYSQL_DISPLAY(WEBSERVER_WT32_ETH01_VERSION);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
void setup()
{
Serial.begin(115200);
while (!Serial);
while (!Serial && millis() < 5000); // wait for serial port to connect

Serial.println("\nStart multiFileProject_WT32_ETH01");
Serial.println(MYSQL_MARIADB_GENERIC_VERSION);
Expand Down

0 comments on commit 78ff2db

Please sign in to comment.