diff options
-rw-r--r-- | src/gsmd/gsmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gsmd/gsmd.c b/src/gsmd/gsmd.c index fdd33de..c11e59f 100644 --- a/src/gsmd/gsmd.c +++ b/src/gsmd/gsmd.c @@ -182,7 +182,8 @@ static int gsmd_initsettings2(struct gsmd *gsmd) /* use +CLIP: to indicate CLIP */ rc |= gsmd_simplecmd(gsmd, "AT+CLIP=1"); /* use +COLP: to indicate COLP */ - rc |= gsmd_simplecmd(gsmd, "AT+COLP=1"); + /* set it 0 to disable subscriber info and avoid cme err 512 */ + rc |= gsmd_simplecmd(gsmd, "AT+COLP=0"); /* use +CCWA: to indicate waiting call */ rc |= gsmd_simplecmd(gsmd, "AT+CCWA=1,1"); /* configure message format as PDU mode*/ |