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

Commit cf97f1e

Browse files
authored
v1.3.3 to fix libb64 fallthrough compile warning
### Releases v1.3.3 1. Fix libb64 `fallthrough` compile warning
1 parent 5148a33 commit cf97f1e

26 files changed

+91
-52
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please ensure to specify the following:
2929
Arduino IDE version: 1.8.19
3030
STM32F7 Nucleo-144 NUCLEO_F767ZI, STM32 core v2.2.0
3131
OS: Ubuntu 20.04 LTS
32-
Linux xy-Inspiron-3593 5.4.0-91-generic #102-Ubuntu SMP Fri Nov 5 16:31:28 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.4.0-94-generic #106-Ubuntu SMP Thu Jan 6 23:58:14 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
I encountered a crash while trying to use the Timer Interrupt.

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ Check [`EthernetWebServer Library Issue: Support for STM32F Series`](https://git
279279
- [`Ethernet2 library v1.0.4+`](https://github.com/khoih-prog/Ethernet2) for W5500. [![GitHub release](https://img.shields.io/github/release/adafruit/Ethernet2.svg)](https://github.com/adafruit/Ethernet2/releases/latest)
280280
- [`Ethernet3 library v1.5.5+`](https://github.com/sstaub/Ethernet3) for W5500/WIZ550io/WIZ850io/USR-ES1 with Wiznet W5500 chip. [![GitHub release](https://img.shields.io/github/release/sstaub/Ethernet3.svg)](https://github.com/sstaub/Ethernet3/releases/latest)
281281
6. For ENC28J60 Ethernet:
282-
- [`EthernetENC library v2.0.1+`](https://github.com/jandrassy/EthernetENC) for ENC28J60. [![GitHub release](https://img.shields.io/github/release/jandrassy/EthernetENC.svg)](https://github.com/jandrassy/EthernetENC/releases/latest). **New and Better**
283-
- [`UIPEthernet library v2.0.10+`](https://github.com/UIPEthernet/UIPEthernet) for ENC28J60. [![GitHub release](https://img.shields.io/github/release/UIPEthernet/UIPEthernet.svg)](https://github.com/UIPEthernet/UIPEthernet/releases/latest)
282+
- [`EthernetENC library v2.0.2+`](https://github.com/jandrassy/EthernetENC) for ENC28J60. [![GitHub release](https://img.shields.io/github/release/jandrassy/EthernetENC.svg)](https://github.com/jandrassy/EthernetENC/releases/latest). **New and Better**
283+
- [`UIPEthernet library v2.0.11+`](https://github.com/UIPEthernet/UIPEthernet) for ENC28J60. [![GitHub release](https://img.shields.io/github/release/UIPEthernet/UIPEthernet.svg)](https://github.com/UIPEthernet/UIPEthernet/releases/latest)
284284

285285

286286
---
@@ -1367,7 +1367,7 @@ Following is debug terminal output and screen shot when running example [Advance
13671367

13681368
```
13691369
Start AdvancedWebServer on NUCLEO_F767ZI, using LAN8742A Ethernet & STM32Ethernet Library
1370-
EthernetWebServer_STM32 v1.3.2
1370+
EthernetWebServer_STM32 v1.3.3
13711371
HTTP EthernetWebServer is @ IP : 192.168.2.117
13721372
EthernetWebServer::handleClient: New Client
13731373
method: GET
@@ -1491,7 +1491,7 @@ The following is debug terminal output when running example [WebClientRepeating]
14911491

14921492
```
14931493
Start WebClientRepeating on NUCLEO_F767ZI, using ENC28J60 & EthernetENC Library
1494-
EthernetWebServer_STM32 v1.3.2
1494+
EthernetWebServer_STM32 v1.3.3
14951495
[ETHERNET_WEBSERVER] Board : NUCLEO_F767ZI , setCsPin: 10
14961496
[ETHERNET_WEBSERVER] Default SPI pinout:
14971497
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1566,7 +1566,7 @@ The following is debug terminal output when running example [UdpNTPClient](examp
15661566

15671567
```
15681568
Start UdpNTPClient on NUCLEO_F767ZI, using W5x00 & Ethernet2 Library
1569-
EthernetWebServer_STM32 v1.3.2
1569+
EthernetWebServer_STM32 v1.3.3
15701570
[ETHERNET_WEBSERVER] Board : NUCLEO_F767ZI , setCsPin: 10
15711571
[ETHERNET_WEBSERVER] Default SPI pinout:
15721572
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1590,7 +1590,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with LAN8742A Ethernet
15901590

15911591
```
15921592
Starting SimpleWebSocket on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1593-
EthernetWebServer_STM32 v1.3.2
1593+
EthernetWebServer_STM32 v1.3.3
15941594
[ETHERNET_WEBSERVER] =========================
15951595
[ETHERNET_WEBSERVER] Default SPI pinout:
15961596
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1635,7 +1635,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with W5x00 & Ethernet3
16351635

16361636
```
16371637
Starting SimpleWebSocket on NUCLEO_F767ZI with W5x00 & Ethernet3 Library
1638-
EthernetWebServer_STM32 v1.3.2
1638+
EthernetWebServer_STM32 v1.3.3
16391639
[ETHERNET_WEBSERVER] =========== USE_ETHERNET3 ===========
16401640
[ETHERNET_WEBSERVER] Default SPI pinout:
16411641
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1687,7 +1687,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with LAN8742A Ethernet
16871687

16881688
```
16891689
Starting SimpleHTTPExample on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1690-
EthernetWebServer_STM32 v1.3.2
1690+
EthernetWebServer_STM32 v1.3.3
16911691
[ETHERNET_WEBSERVER] =========================
16921692
[ETHERNET_WEBSERVER] Default SPI pinout:
16931693
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1760,7 +1760,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with LAN8742A Ethernet
17601760

17611761
```
17621762
Start MQTTClient_Auth on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1763-
EthernetWebServer_STM32 v1.3.2
1763+
EthernetWebServer_STM32 v1.3.3
17641764
[ETHERNET_WEBSERVER] =========================
17651765
[ETHERNET_WEBSERVER] Default SPI pinout:
17661766
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1799,7 +1799,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with ENC28J60 & Ethern
17991799

18001800
```
18011801
Start MQTTClient_Auth on NUCLEO_F767ZI with ENC28J60 & EthernetENC Library
1802-
EthernetWebServer_STM32 v1.3.2
1802+
EthernetWebServer_STM32 v1.3.3
18031803
[ETHERNET_WEBSERVER] =========== USE_ETHERNET_ENC ===========
18041804
[ETHERNET_WEBSERVER] Default SPI pinout:
18051805
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1838,7 +1838,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with W5x00 & Ethernet2
18381838

18391839
```
18401840
Start MQTTClient_Auth on NUCLEO_F767ZI with W5x00 & Ethernet2 Library
1841-
EthernetWebServer_STM32 v1.3.2
1841+
EthernetWebServer_STM32 v1.3.3
18421842
[ETHERNET_WEBSERVER] =========== USE_ETHERNET2 ===========
18431843
[ETHERNET_WEBSERVER] Default SPI pinout:
18441844
[ETHERNET_WEBSERVER] MOSI: 11
@@ -1872,7 +1872,7 @@ The terminal output of **STM32F4 BLACK_F407VE with LAN8720 Ethernet and STM32Eth
18721872

18731873
```
18741874
Starting SimpleWebSocket_LAN8720 on BLACK_F407VE with LAN8720 Ethernet & STM32Ethernet Library
1875-
EthernetWebServer_STM32 v1.3.2
1875+
EthernetWebServer_STM32 v1.3.3
18761876
Using mac index = 6
18771877
Connected! IP address: 192.168.2.138
18781878
starting WebSocket client
@@ -1897,7 +1897,7 @@ The terminal output of **BLACK_F407VE using LAN8720 Ethernet and STM32Ethernet L
18971897

18981898
```
18991899
Start WebClient_LAN8720 on BLACK_F407VE, using LAN8720 Ethernet & STM32Ethernet Library
1900-
EthernetWebServer_STM32 v1.3.2
1900+
EthernetWebServer_STM32 v1.3.3
19011901
You're connected to the network, IP = 192.168.2.139
19021902
19031903
Starting connection to server...
@@ -1970,7 +1970,7 @@ Following is debug terminal output and screen shot when running example [Advance
19701970

19711971
```
19721972
Start AdvancedWebServer_LAN8720 on BLACK_F407VE, using LAN8720 Ethernet & STM32Ethernet Library
1973-
EthernetWebServer_STM32 v1.3.2
1973+
EthernetWebServer_STM32 v1.3.3
19741974
.[EWS] String Len = 0, extend to 2048
19751975
......... .......... .......... .......... .......... .......... .......... ..........
19761976
```
@@ -2038,7 +2038,7 @@ Submit issues to: [EthernetWebServer_STM32 issues](https://github.com/khoih-prog
20382038
8. Add support to **Ethernet LAN8720** using [STM32Ethernet library](https://github.com/stm32duino/STM32Ethernet), for boards such as **Nucleo-144 (F429ZI, NUCLEO_F746NG, NUCLEO_F746ZG, NUCLEO_F756ZG), Discovery (DISCO_F746NG)** and **STM32F4 boards (BLACK_F407VE, BLACK_F407VG, BLACK_F407ZE, BLACK_F407ZG, BLACK_F407VE_Mini, DIYMORE_F407VGT, FK407M1)**
20392039
9. Reduce usage of Arduino String with std::string
20402040
10. Optimize library code and examples by using **reference-passing instead of value-passing**
2041-
2041+
11. Fix authenticate issue and compiler warmings caused by libb64
20422042

20432043
---
20442044

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
## Table of Contents
1313

1414
* [Changelog](#changelog)
15+
* [Releases v1.3.3](#releases-v133)
1516
* [Releases v1.3.2](#releases-v132)
1617
* [Releases v1.3.1](#releases-v131)
1718
* [Major Releases v1.3.0](#major-releases-v130)
@@ -31,6 +32,10 @@
3132

3233
## Changelog
3334

35+
### Releases v1.3.3
36+
37+
1. Fix libb64 `fallthrough` compile warning
38+
3439
### Releases v1.3.2
3540

3641
1. Fix wrong http status header bug. Check [fix for wrong http status header #42](https://github.com/khoih-prog/EthernetWebServer/pull/42)

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EthernetWebServer_STM32",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"keywords": "WebServer, built-in-Ethernet, STM32F, STM32L, STM32H, STM32G, STM32WB, STM32MP1, Ethernet-shield, Nucleo-144, Nucleo-64, Nucleo-32, LAN8742A, LAN8720, ENC28J60, W5x00, W5500, W5100, Ethernet, Ethernet2, Ethernet3, EthernetLarge, EtnernetENC, UIPEthernet, HTTP-Client, WebSocket-Client, server, client, websocket",
55
"description": "Simple Ethernet WebServer, HTTP Client and WebSocket Client library for STM32F/L/H/G/WB/MP1 boards running built-in Ethernet LAN8742A, LAN8720 or Ethernet W5x00, ENC28J60 shields",
66
"authors":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EthernetWebServer_STM32
2-
version=1.3.2
2+
version=1.3.3
33
author=Khoi Hoang
44
license=MIT
55
maintainer=Khoi Hoang <khoih.prog@gmail.com>

platformio/platformio.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ lib_deps =
3939
EthernetLarge@~2.0.0
4040
Ethernet2@~1.0.4
4141
Ethernet3@~1.5.5
42-
EthernetENC@~2.0.1
42+
EthernetENC@~2.0.2
4343
; PlatformIO 5.x
4444
; stm32duino/STM32duino LwIP@~2.1.2
4545
; stm32duino/STM32duino STM32Ethernet@~1.2.0
@@ -49,7 +49,7 @@ lib_deps =
4949
; PaulStoffregen/EthernetLarge@~2.0.0
5050
; adafruit/Ethernet2@~1.0.4
5151
; sstaub/Ethernet3@~1.5.5
52-
; jandrassy/EthernetENC@~2.0.1
52+
; jandrassy/EthernetENC@~2.0.2
5353

5454
build_flags =
5555
; set your build_flags

src/EthernetHttpClient_STM32.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_STM32-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
#pragma once

src/EthernetWebServer_STM32.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
#pragma once
@@ -59,13 +60,13 @@
5960

6061
#endif
6162

62-
#define ETHERNET_WEBSERVER_STM32_VERSION "EthernetWebServer_STM32 v1.3.2"
63+
#define ETHERNET_WEBSERVER_STM32_VERSION "EthernetWebServer_STM32 v1.3.3"
6364

6465
#define ETHERNET_WEBSERVER_STM32_VERSION_MAJOR 1
6566
#define ETHERNET_WEBSERVER_STM32_VERSION_MINOR 3
66-
#define ETHERNET_WEBSERVER_STM32_VERSION_PATCH 2
67+
#define ETHERNET_WEBSERVER_STM32_VERSION_PATCH 3
6768

68-
#define ETHERNET_WEBSERVER_STM32_VERSION_INT 1003002
69+
#define ETHERNET_WEBSERVER_STM32_VERSION_INT 1003003
6970

7071
#define USE_NEW_WEBSERVER_VERSION true
7172

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
// (c) Copyright Arduino. 2016

src/Parsing_STM32-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
#pragma once

src/detail/Debug_STM32.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.3.2
15+
Version: 1.3.3
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -31,6 +31,7 @@
3131
1.3.0 K Hoang 20/12/2021 Reduce usage of Arduino String with std::string. Use reference passing instead of value-passing
3232
1.3.1 K Hoang 25/12/2021 Fix bug
3333
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
34+
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
3435
*************************************************************************************************************************************/
3536

3637
#pragma once

0 commit comments

Comments
 (0)