From d0c014111e1923e48147262407593cd0359ae35f Mon Sep 17 00:00:00 2001 From: Shweta Jain Date: Mon, 6 Jul 2020 22:39:20 +0300 Subject: [PATCH] gatchat: increase line buffer max size Some modems might transfer results that are larger than the current buffer. Increase it. --- gatchat/gatresult.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatchat/gatresult.h b/gatchat/gatresult.h index e92d38ba..5993b233 100644 --- a/gatchat/gatresult.h +++ b/gatchat/gatresult.h @@ -35,7 +35,7 @@ struct _GAtResult { typedef struct _GAtResult GAtResult; -#define G_AT_RESULT_LINE_LENGTH_MAX 2048 +#define G_AT_RESULT_LINE_LENGTH_MAX 4096 struct _GAtResultIter { GAtResult *result;