Skip to content

Commit 9a65aca

Browse files
author
Kei
committed
Merge branch 'release/v1.1.1'
2 parents ebd795f + 06c920c commit 9a65aca

File tree

7 files changed

+10
-227
lines changed

7 files changed

+10
-227
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,6 @@ v1.1.0
169169
- ioLibrary Update
170170
- Dependency Removal (remove "board.h" in "w5500.h")
171171
- Remove garbage file
172-
172+
173+
v1.1.1
174+
- Add inactivity time function in Server/Mixed Mode

WIZ550S2E_App/Release/makefile

-69
This file was deleted.

WIZ550S2E_App/src/S2E/S2E.c

+6
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,12 @@ static void s2e_sockestablished_process(uint8_t sock)
527527
auth_process(sock);
528528
return;
529529
}
530+
if((inactive_flag == 0) && net->inactivity)
531+
inactive_flag = 1;
532+
else if(inactive_flag == 2) {
533+
inactive_flag = 0;
534+
disconnect(sock);
535+
}
530536
case TCP_CLIENT_MODE:
531537
if((inactive_flag == 0) && net->inactivity)
532538
inactive_flag = 1;

WIZ550S2E_App/src/common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#define MAJOR_VER 1
1111
#define MINOR_VER 1
12-
#define MAINTENANCE_VER 0
12+
#define MAINTENANCE_VER 1
1313

1414
#define SOCK_DATA 0
1515
#define SOCK_CONFIG 1

WIZ550S2E_Boot/Release/makefile

-56
This file was deleted.

lpc_chip_11exx/Release/makefile

-50
This file was deleted.

wiznet_s2e_wiz550s2e_board/Release/makefile

-50
This file was deleted.

0 commit comments

Comments
 (0)