Skip to content

Commit

Permalink
Fix wifi_print(TCP clears terminal
Browse files Browse the repository at this point in the history
Fixes #171
v1.4.87
  • Loading branch information
AndyLindsay committed Jul 6, 2018
1 parent ededcaf commit 24cd0cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file modified Learn/Simple Libraries/Network/libwifi/cmm/libwifi.a
Binary file not shown.
3 changes: 2 additions & 1 deletion Learn/Simple Libraries/Network/libwifi/print.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ int wifi_print(int protocol, int handle, const char *fmt, ...)
break;
case TCP:
dprint(wifi_fds, "%c%c%d,%d\r", CMD, SEND, handle, size);
for(int n = 0; n <= size; n++)

for(int n = 0; n < size; n++)
{
fdserial_txChar(wifi_fds, wifi_buf[n]);
if(n > 32)
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.4.86
v1.4.87

0 comments on commit 24cd0cc

Please sign in to comment.