summaryrefslogtreecommitdiff
path: root/src/gsmd/gsmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gsmd/gsmd.c')
-rw-r--r--src/gsmd/gsmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gsmd/gsmd.c b/src/gsmd/gsmd.c
index 58d92e3..c213a6f 100644
--- a/src/gsmd/gsmd.c
+++ b/src/gsmd/gsmd.c
@@ -185,7 +185,7 @@ static int gsmd_initsettings2(struct gsmd *gsmd)
/* 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");
+ //rc |= gsmd_simplecmd(gsmd, "AT+CCWA=1,1");
/* configure message format as PDU mode*/
/* FIXME: TEXT mode support!! */
rc |= gsmd_simplecmd(gsmd, "AT+CMGF=0");
@@ -240,7 +240,7 @@ int gsmd_initsettings(struct gsmd *gsmd)
{
struct gsmd_atcmd *cmd;
- cmd = atcmd_fill("ATZ", strlen("ATZ")+1, &firstcmd_atcb, gsmd, 0, NULL);
+ cmd = atcmd_fill("ATE0", strlen("ATE0")+1, &firstcmd_atcb, gsmd, 0, NULL);
if (!cmd)
return -ENOMEM;
personal git repositories of Harald Welte. Your mileage may vary