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

Commit

Permalink
v1.9.1 to fix bug of wrong reqStates
Browse files Browse the repository at this point in the history
### Release v1.9.1

1. Fix bug of wrong `reqStates`. Check [Release 1.9 breakes previously running code #39](khoih-prog/AsyncHTTPRequest_Generic#39) and [Callback behaviour is buggy (ESP8266) #43](khoih-prog/AsyncHTTPRequest_Generic#43).
2. Optional larger `DEFAULT_RX_TIMEOUT` from default 3s, for slower networks
  • Loading branch information
khoih-prog authored Oct 21, 2022
1 parent d75e5e2 commit 58c2182
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,14 +201,14 @@ Have a look at the discussion in [Different behaviour using the src_cpp or src_h

#### 1. File [AsyncHTTPRequest.ino](examples/AsyncHTTPRequest/AsyncHTTPRequest.ino)

https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/blob/44abb8b160c6053d179ad5b3086a63033fc9e482/examples/AsyncHTTPRequest/AsyncHTTPRequest.ino#L38-L173
https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/blob/d75e5e296dd01c143b32b37be1016e72277bb00c/examples/AsyncHTTPRequest/AsyncHTTPRequest.ino#L38-L176


---

#### 2. File [defines.h](examples/AsyncHTTPRequest/defines.h)

https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/blob/44abb8b160c6053d179ad5b3086a63033fc9e482/examples/AsyncHTTPRequest/defines.h#L16-L50
https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/blob/d75e5e296dd01c143b32b37be1016e72277bb00c/examples/AsyncHTTPRequest/defines.h#L16-L50


---
Expand All @@ -224,7 +224,7 @@ https://github.com/khoih-prog/AsyncHTTPRequest_Teensy41/blob/44abb8b160c6053d179

```
Start AsyncHTTPRequest on TEENSY 4.1
AsyncHTTPRequest_Teensy41 v1.9.0
AsyncHTTPRequest_Teensy41 v1.9.1
Initialize Ethernet using DHCP => Connected! IP address:192.168.2.107
**************************************
Expand Down Expand Up @@ -271,7 +271,7 @@ week_number: 42

```
Start AsyncCustomHeader on TEENSY 4.1
AsyncHTTPRequest_Teensy41 v1.9.0
AsyncHTTPRequest_Teensy41 v1.9.1
Initialize Ethernet using DHCP => Connected! IP address:192.168.2.107
Sending GET Request to http://worldtimeapi.org/api/timezone/America/Toronto.txt
Expand Down Expand Up @@ -322,7 +322,7 @@ week_number: 42

```
Start AsyncDweetGET on TEENSY 4.1
AsyncHTTPRequest_Teensy41 v1.9.0
AsyncHTTPRequest_Teensy41 v1.9.1
Initialize Ethernet using DHCP => Connected! IP address:192.168.2.107
**************************************
Expand All @@ -339,7 +339,7 @@ Actual value: 66

```
Start AsyncDweetPOST on TEENSY 4.1
AsyncHTTPRequest_Teensy41 v1.9.0
AsyncHTTPRequest_Teensy41 v1.9.1
Initialize Ethernet using DHCP => Connected! IP address:192.168.2.107
Making new POST request
Expand All @@ -359,7 +359,7 @@ Actual value: 1007

```
Start AsyncSimpleGET on TEENSY 4.1
AsyncHTTPRequest_Teensy41 v1.9.0
AsyncHTTPRequest_Teensy41 v1.9.1
Initialize Ethernet using DHCP => Connected! IP address:192.168.2.107
**************************************
Expand Down Expand Up @@ -448,6 +448,8 @@ Submit issues to: [AsyncHTTPRequest_Teensy41 issues](https://github.com/khoih-pr
6. Display only successful responseText in examples
7. Improve debug messages by adding functions to display error messages instead of `cryptic error number`
8. Not try to reconnect to the same `host:port` after connected
9. Fix bug of wrong `reqStates`


---
---
Expand Down

0 comments on commit 58c2182

Please sign in to comment.