From 235409aa2ee1c3dff00896ee793e15e32b1fa9d6 Mon Sep 17 00:00:00 2001 From: Christina Quast Date: Wed, 24 Jun 2015 16:05:09 +0200 Subject: [PATCH] simtrace.h: Increased host to SIMtrace buf size The host got stuck sometimes when large data frames had to be send from the host program to SIMtrace. The printouts would just stop if many large packets were received from the SIM card and needed to be transferred to the mobile phone. Increasing the buffer length removed the problem. --- firmware/src_simtrace/simtrace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/src_simtrace/simtrace.h b/firmware/src_simtrace/simtrace.h index 2530ec7b..ea2d401f 100644 --- a/firmware/src_simtrace/simtrace.h +++ b/firmware/src_simtrace/simtrace.h @@ -8,7 +8,7 @@ #define DATAIN 2 #define INT 3 -#define BUFLEN 64 +#define BUFLEN 512 #define PHONE_DATAOUT 4 #define PHONE_DATAIN 5