From 8112bb0c3a1b16a9f7e47e725d95f9fbab1bf4c2 Mon Sep 17 00:00:00 2001 From: Manikandan C Date: Mon, 12 Nov 2018 14:01:47 +0100 Subject: dlt-client: logging: Extended the receiver buffer size - dlt-control couldn't receive all the GET_LOG_INFO response message when many applications and contexts are registered. Therefore the receiver buffer size was extended to 65K. Also the receive buffer size macros are reduced to one variable. - Code cleanup and improvements Signed-off-by: Saya Sugiura --- src/shared/dlt_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/shared/dlt_common.c') diff --git a/src/shared/dlt_common.c b/src/shared/dlt_common.c index a77459d..9f8d60e 100644 --- a/src/shared/dlt_common.c +++ b/src/shared/dlt_common.c @@ -3948,7 +3948,7 @@ int16_t dlt_getloginfo_conv_ascii_to_uint16_t(char *rp, int *rp_count) if ((rp == NULL) || (rp_count == NULL)) { - return DLT_RETURN_ERROR; + return -1; } /* ------------------------------------------------------ from: [89 13 ] -> to: ['+0x'1389\0] -> to num @@ -3970,7 +3970,7 @@ int16_t dlt_getloginfo_conv_ascii_to_int16_t(char *rp, int *rp_count) if ((rp == NULL) || (rp_count == NULL)) { - return DLT_RETURN_ERROR; + return -1; } /* ------------------------------------------------------ from: [89 ] -> to: ['0x'89\0] -> to num -- cgit v1.2.1