From a0b0915629dd0a97b446de650319eaa205aefc3c Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Wed, 11 Nov 2020 18:45:16 +0100 Subject: [PATCH] tcpTest continued --- cube/User/Src/tcpTest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cube/User/Src/tcpTest.c b/cube/User/Src/tcpTest.c index ca4ef33..2977ea6 100644 --- a/cube/User/Src/tcpTest.c +++ b/cube/User/Src/tcpTest.c @@ -87,7 +87,7 @@ void tcpTestHandler(void *handle) { res32 = recv(TCPTEST_SOCK, buf, res16); coloredMsg(LOG_YELLOW, "tth, recv returns 0x%02x", res32); if (res32 > 0) { - coloredMsg(LOG_YELLOW, "tth, received: %s", buf); + coloredMsg(LOG_YELLOW, "tth, received: %d, %s", res32, buf); } free(buf); }